chore: remove console logs in production

This commit is contained in:
zhom
2025-08-16 19:26:18 +04:00
parent 178f07bec7
commit 2e6bb2498b
+3
View File
@@ -7,6 +7,9 @@ const nextConfig: NextConfig = {
unoptimized: true,
},
distDir: "dist",
compiler: {
removeConsole: process.env.NODE_ENV === "production",
},
};
export default nextConfig;