欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue打包过滤掉‘console.log’

程序员文章站 2022-05-12 22:36:54
...

 

1、找到这个文件

vue打包过滤掉‘console.log’

2、添加一下代码

vue打包过滤掉‘console.log’

3、测试,时间原因,没有测试,应该是没有问题的,有问题后期更新

代码:

 new UglifyJsPlugin({
      uglifyOptions: {
        compress: {
          warnings: false,
          // 打包后 log 就不会出现了
          drop_debugger: true,
          drop_console: true,
          pure_funcs: ['console.log']
        }
      },
      sourceMap: config.build.productionSourceMap,
      parallel: true
    }),

参考网址

https://blog.csdn.net/q515656712/article/details/94437372

相关标签: vue.js