Vue性能优化分析工具:webpack-bundle-analyzer打包文件分析
一、安装npm intall webpack-bundle-analyzer –save-dev二、配置在build/webpack.prod.config.js中的module.exports = webpackConfig这句话的上面增加if (config.build.bundleAnalyzerReport) {const BundleAnalyzerPlugin...
·
###一、安装
npm intall webpack-bundle-analyzer –save-dev
###二、配置
在build/webpack.prod.config.js
中的module.exports = webpackConfig
这句话的上面增加
if (config.build.bundleAnalyzerReport) {
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
webpackConfig.plugins.push(new BundleAnalyzerPlugin())
}
###三、运行
使用命令npm run build --report
###四、结果
更多推荐
已为社区贡献9条内容
所有评论(0)