我们用vue框架写代码时,有时候会用console去调试(基于开发习惯),当一个项目开发完毕,需要发布时,会有各种log信息出现在控制台,这些信息并不想在生产环境被某些用户看到,当然可以一条条删掉…(已经删了3个小时) ,这时我们可以在vue依赖包加入这段代码:
目录下
my-app-vue(项目名称)\node_modules@vue\cli-service\lib\config\terserOptions.js
我们需要在

module.exports = options =>({
	terserOptions:{
		compress:{
			// 取消console.log
			 warnings: false,
		     drop_console: true,
		     drop_debugger: true,
		     pure_funcs: ['console.log']
		}
	}
})

在这里插入图片描述

Logo

前往低代码交流专区

更多推荐