mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-26 03:26:47 +08:00
23 lines
491 B
Markdown
23 lines
491 B
Markdown
### <span id="bundle">✅ 配置 打包分析 </span>
|
|
|
|
```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
|
|
```
|