chore: 非生产环境打包时,不删除 debugger 符号,否则开发环境下也无法使用 debugger

This commit is contained in:
Utopia
2025-10-31 17:27:25 +08:00
parent 6b3e8508b2
commit 2c442892c0

View File

@@ -188,7 +188,7 @@ export default defineConfig(({ command, mode }) => {
: undefined,
},
esbuild: {
drop: VITE_DELETE_CONSOLE === 'true' ? ['console', 'debugger'] : ['debugger'],
drop: VITE_DELETE_CONSOLE === 'true' ? ['console', 'debugger'] : [],
},
build: {
sourcemap: false,