问题遇到的现象和发生背景
使用图形化界面vue ui运行build命令报错,Unexpected console statement
于是在开发依赖安装了 babel-plugin-transform-remove-console
并且在babel.config.js进行配置
问题相关代码,请勿粘贴截图
// 这是项目发布阶段需要用到的 babel 插件
const prodPlugins = []
if (process.env.NODE_ENV === 'production') {
prodPlugins.push('transform-remove-console')
}
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
],
plugins: [
[
'component',
{
libraryName: 'element-ui',
styleLibraryName: 'theme-chalk'
}
],
// 发布产品时候的插件数组
...prodPlugins
]
}
运行结果及报错内容
重新运行build命令依旧报错,还是Unexpected console statement
我的解答思路和尝试过的方法
查了网上都是按这样配置就没问题,我配置了却不起作用?
我想要达到的结果
希望能解决babel-plugin-transform-remove-console无法去除console的问题,实现去除