From f818fad95dcb88cbefb537fdef09d6c2839b43ab Mon Sep 17 00:00:00 2001 From: puria-hjt Date: Fri, 28 Jun 2024 18:51:24 +0200 Subject: [PATCH] ref: disable reactstrict mode --- next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 2b7e3a9..20dbd49 100644 --- a/next.config.js +++ b/next.config.js @@ -1,7 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { output: "export", // <=== enables static exports - reactStrictMode: true, + // reactStrictMode: true, images: { unoptimized: true }, };