0.9.4 • Published 16 days ago

vite-bundle-analyzer v0.9.4

Weekly downloads
-
License
MIT
Repository
github
Last release
16 days ago

!WARNING Vite's enable minify by default.There for you will see that the parsed size is larger than actual size.This is because the bundle info provide by rollup isn't compressed.(If you care about this problem you can choose anothr plugins.)

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(),
  ],
});

// If you are using it in rollup you can import 'adapter' from package.
// Then use it with adapter(analyzer())

Options

paramstypedefaultdescription
analyzerModeserver\|static\|jsonserverIn server will create a static server to preview.
fileNamestringstatsThe name of the static product.(No need to include .ext name)
reportTitlestringplugin nameReport website title.
gzipOptionsRecord<string,any>{}Compression options. (details see zlib module)
analyzerPortnumber\|'auto'8888static server port.
openAnalyzerbooleantrueOpen the static website. (Only works on analyzerMode is server )
summarybooleantrueShow full chunk info to stdout.

LICENSE

MIT

Contributions

Contributions are welcome! If you find a bug or want to add a new feature, please open an issue or submit a pull request.

Author and contributors

0.9.4

16 days ago

0.9.3

20 days ago

0.9.2

1 month ago

0.9.1

1 month ago

0.9.0

1 month ago

0.8.3

2 months ago

0.8.2

2 months ago

0.8.1

2 months ago

0.8.0

2 months ago

0.7.0

3 months ago

0.6.1

4 months ago

0.6.0

4 months ago

0.5.0

5 months ago

0.4.0

5 months ago

0.3.0

5 months ago

0.2.0

5 months ago

0.1.0

6 months ago

0.0.1

6 months ago