vue3项目打包移除console.log()打印

一、安装terser(不安装打包会报错,安装过后无需引入直接使用)

npm install terser --save-dev

二、在vite.config.ts里面使用

	build: {
	    minify: "terser",
	    terserOptions:{
	      compress:{
	        drop_console: true,
	        drop_debugger: true,
	      }
	    }
	  }

在这里插入图片描述

本文来自网络,不代表协通编程立场,如若转载,请注明出处:https://net2asp.com/7c88a24092.html