优化实现后,不想每次启动看到弹出的剖析页面。

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

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