diff --git a/vite.config.mts b/vite.config.mts index a0985cd19..9c1edf3b5 100644 --- a/vite.config.mts +++ b/vite.config.mts @@ -6,7 +6,7 @@ import dotenv from "dotenv"; dotenv.config(); const IS_DEV = process.env.NODE_ENV === 'development'; -const SHOULD_MINIFY = process.env.ENABLE_MINIFY !== 'false'; +const SHOULD_MINIFY = process.env.ENABLE_MINIFY === 'true'; interface ShimResult { code: string;