生产环境不显示console.log代码

发布时间:2023-07-10 18:30

babel.config.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'
  ]
}

package.json
增加配置代码

"babel-plugin-transform-remove-console": "^6.9.4",

ItVuer - 免责声明 - 关于我们 - 联系我们

本网站信息来源于互联网,如有侵权请联系:561261067@qq.com

桂ICP备16001015号