vite打包过滤debugger,console
在vite.config.ts配置文件中,增加如下代码
const config: UserConfigExport = { build: { minify: 'terser', terserOptions: { compress: { //生产环境时移除console drop_console: true, drop_debugger: true, }, } }, }
在vite.config.ts配置文件中,增加如下代码
const config: UserConfigExport = { build: { minify: 'terser', terserOptions: { compress: { //生产环境时移除console drop_console: true, drop_debugger: true, }, } }, }