mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-06 03:57:50 +08:00
24 lines
412 B
Markdown
24 lines
412 B
Markdown
# 配置打包分析
|
|
|
|
```javascript
|
|
const BundleAnalyzerPlugin =
|
|
require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
|
|
|
|
module.exports = {
|
|
chainWebpack: (config) => {
|
|
// 打包分析
|
|
if (IS_PROD) {
|
|
config.plugin("webpack-report").use(BundleAnalyzerPlugin, [
|
|
{
|
|
analyzerMode: "static",
|
|
},
|
|
]);
|
|
}
|
|
},
|
|
};
|
|
```
|
|
|
|
```bash
|
|
npm run build
|
|
```
|