From 58807697ac2f8c74a567e60a758cc82453d7d411 Mon Sep 17 00:00:00 2001 From: gnehs Date: Sun, 3 Mar 2024 14:52:34 +0800 Subject: [PATCH] disable reactStrictMode --- next.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index a3211b4..d35927c 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,4 @@ /** @type {import('next').NextConfig} */ -const nextConfig = { output: "export" }; +const nextConfig = { output: "export", reactStrictMode: false }; export default nextConfig;