chore: 非生产环境打包时,不删除 debugger 符号,否则开发环境下也无法使用 debugger
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user