博客列表 >vue生产时去掉console.log

vue生产时去掉console.log

搁浅
搁浅原创
2023年03月15日 14:24:10363浏览
安装npm install babel-plugin-transform-remove-console —save-dev
babel.config.js文件
  1. module.exports = {
  2. presets: [
  3. '@vue/cli-plugin-babel/preset'
  4. ],
  5. 'env': {
  6. 'development': {
  7. 'plugins': ['dynamic-import-node']
  8. },
  9. // 增加以下配置编译时可以去掉console.log等
  10. 'production': {
  11. 'plugins': [
  12. [
  13. 'transform-remove-console',
  14. {
  15. // 排除项
  16. 'exclude': ['error', 'warn']
  17. }
  18. ]
  19. ]
  20. }
  21. }
  22. }
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议