likes
comments
collection
share

vue-cli-plugin-webpack-bundle-analyzer 关闭自动打开分析结果页

作者站长头像
站长
· 阅读数 91

优化完成后,不想每次启动看到弹出的分析页面。

添加vue.config.js中的 pluginOptions配置:

module.exports = {
   devServer:  xxx,
   configureWebpack : xxx,
   ...,
 
   pluginOptions: {
     webpackBundleAnalyzer: {
       analyzerMode: 'disabled'
     }
   }

 }
转载自:https://segmentfault.com/a/1190000041558004
评论
请登录