Skip to content

a3mitskevich/vite-bundle-analyzer

 
 

Repository files navigation

vite-bundle-analyzer

Install

$ yarn add vite-bundle-analyzer -D

# or

$ npm install vite-bundle-analyzer -D

Usage

import { defineConfig } from "vite";

import { analyzer } from "vite-bundle-analyzer";

export default defineConfig({
  plugins: [
    // ...your plugin
    analyzer(),
  ],
});

Options

params type default description
analyzerMode server|static|json server In server will create a static server to preview.
filename string stats The name of the static product.(No need extname)
reportTitle string plugin name Report website title.
gzipOptions Record<string,any> {} Compression options (details see zlib module)
analyzerPort number|'auto' 8888 static server port
openAnalyzer boolean true Open the static website. (Only works on analyzerMode is server )

LICENSE

MIT

Author

Kanno

About

bundle analyzer for vite

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 92.3%
  • HTML 7.0%
  • Other 0.7%