基础
生产环境移除 debugger console.log
export default defineConfig({
build: {
minify: "terser",
terserOptions: {
compress: {
drop_console: false, // 不自动移除所有 console
pure_funcs: ["console.log", "console.info", "console.debug"], // 只移除指定的
drop_debugger: true,
},
},
},
});
2026/2/3大约 2 分钟