Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vue-cli-plugin-webpack-bundle-analyzer

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-cli-plugin-webpack-bundle-analyzer

vue-cli plugin to visualize size of webpack output files

  • 4.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8.7K
increased by1.78%
Maintainers
1
Weekly downloads
 
Created
Source

vue-cli-plugin-webpack-bundle-analyzer

vue-cli plugin to visualize size of webpack output files

Uses webpack-bundle-analyzer to create an interactive treemap visualization of the contents of all your bundles.

webpack bundle analyzer zoomable treemap

Configuration

Add a webpackBundleAnalyzer object to your pluginOptions in vue.config.js:

module.exports = {
  pluginOptions: {
    webpackBundleAnalyzer: {
      openAnalyzer: false
    }
  }
};

You can use any of these settings.

Production

When building your Vue project for production, the analyzerMode will be set to static. By default, the generated web page will be opened in your browser. This can be changed by setting openAnalyzer to false as shown above.

Modern Mode

When using the --modern flag to build your app, this plugin will create 2 different reports: one for your legacy build and one for your modern build. Your report filename will be prefixed with legacy- and modern- respectively.

Known Caveats

In development, you'll only be able to use the stat size due to webpack-bundle-analyzer requiring physical files to calculate parsed and gzipped sizes.

Installing in an Already Created Project

vue add webpack-bundle-analyzer

Injected webpack-chain Rule

The following rule is automatically added to your Vue config behind the scenes. All you need to do to activate this plugin is run the above command in your project's directory.

config
  .plugin("webpack-bundle-analyzer")
  .use(BundleAnalyzerPlugin)
  .init(Plugin => new Plugin(options));

Keywords

FAQs

Package last updated on 12 Dec 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc