运用插件进行移除,代码如下所示 const plugins = ['@vue/babel-plugin-transform-vue-jsx', '@babel/plugin-proposal-optional-chaining'] // 生产环境移除console if (process.env.NODE_ENV === 'production') { plugins.push('transform-remove-console') } module.exports = { plugins: plugins, 'env': { 'development': { 'sourceMaps': true, 'retainLines': true } }, }