安装
npm i webpack-bundle-analyzer --save
配置
vue.config.js
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
plugins:[
new BundleAnalyzerPlugin(),
]
运行
// 生产包
npm run build
npm i webpack-bundle-analyzer --save
vue.config.js
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
plugins:[
new BundleAnalyzerPlugin(),
]
// 生产包
npm run build