vue-cli 3.0 打包后删除console.log

一、使用babel-plugin-transform-remove-console插件

1 cnpm install babel-plugin-transform-remove-console --save-dev

二、在babel.consig.js中配置

const plugins = ["@vue/babel-plugin-transform-vue-jsx"];
// 生产环境移除console
if(process.env.NODE_ENV === 'production') {
  plugins.push("transform-remove-console")
}
module.exports = {
  plugins: plugins,
  presets: [
    '@vue/cli-plugin-babel/preset'
  ]
}

 

 

原文地址:https://www.cnblogs.com/zhizou/p/12460978.html