From 2f394593d9c493edc0dea0d28c0eda1191e6bf62 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Fri, 29 Aug 2025 11:03:17 -0700 Subject: [PATCH] Fix stuff calling 2x at start --- next.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index adbef04..e7dd5ab 100644 --- a/next.config.ts +++ b/next.config.ts @@ -8,7 +8,8 @@ const nextConfig: NextConfig = { unoptimized: true }, assetPrefix: isProd ? undefined : `http://${internalHost}:3000`, - devIndicators: false + devIndicators: false, + reactStrictMode: false } export default nextConfig