From f687e7f4a90f297140827f3134b08f78bd288592 Mon Sep 17 00:00:00 2001 From: RedrockJS Date: Wed, 2 Jul 2025 10:11:22 +0300 Subject: [PATCH] fix: upd-1 forms sending error --- next.config.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/next.config.ts b/next.config.ts index 1f7ea33..c7f9984 100644 --- a/next.config.ts +++ b/next.config.ts @@ -8,10 +8,6 @@ const nextConfig: NextConfig = { includePaths: [path.resolve('./src/core/styles')], prependData: `@import "index.scss";`, }, - compiler: { - removeConsole: - process.env.NODE_ENV === 'production' ? { exclude: ['error'] } : false, - }, }; export default nextConfig;