You can try with:
export default defineConfig(({ mode }) => { return { // other configuration esbuild: { pure: mode === 'production' ? ['console.log'] : [], } } }
Came from github issue