vue项目在打包时,去掉所有的console.log输出

npm i babel-plugin-transform-remove-console -S
const proPlugins = [];// 开发环境 不做操作
// 生产环境,去掉console
if (process.env.NODE_ENV === 'production') {
    proPlugins.push('transform-remove-console');
}
module.exports = {
  presets: [
    '@vue/app'
  ],
  plugins:[
    ...proPlugins
  ]
}

 

posted @ 2021-02-20 10:58  it大虫  阅读(2405)  评论(0)    收藏  举报