From 6d6915c5c522ddf53e3823b14509734809e99743 Mon Sep 17 00:00:00 2001 From: yoosangwook Date: Tue, 10 Sep 2024 13:30:58 +0900 Subject: [PATCH] Update reactStrictMode to false in next.config.mjs --- next.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 1e7afb62..d4759fb3 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - reactStrictMode: true, + reactStrictMode: false, swcMinify: true, webpack: (config) => { config.resolve.fallback = { fs: false }