From a4c1b28c8da74688ce787e253ff800ccbd654358 Mon Sep 17 00:00:00 2001 From: yoosangwook Date: Wed, 31 Jul 2024 10:59:56 +0900 Subject: [PATCH] chore: Enable reactStrictMode in next.config.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit strictMode 기능 활성화했고 false로 세팅함 --- next.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 107c5460..8cc4c040 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - // reactStrictMode: false, + reactStrictMode: false, webpack: (config) => { config.externals.push({ "utf-8-validate": "commonjs utf-8-validate",