【vue】----生产环境去除cosole.*

vue-cli 4.x 自带terser

module.exports = {
  chainWebpack: (config) => {
    config.optimization.minimizer('terser').tap((args) => {
      args[0].terserOptions.compress.drop_console = true
      return args
    })
  }
}

babel-plugin-transform-remove-console插件

babel.config.js 文件
module.exports = {
  presets: [
    '@vue/app'
  ],
  plugins: ['babel-plugin-transform-remove-console']
}
本博客仅作为个人学习记录
原文地址:https://www.cnblogs.com/asenper/p/14231399.html