vue生产时去掉console.log

编辑: admin 分类: 电脑知识 发布时间: 2023-06-14 来源:互联网
安装npm install babel-plugin-transform-remove-console —save-devbabel.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. }
【出处:滨海网站制作公司 http://www.1234xp.com/binhai.html 欢迎留下您的宝贵建议】