From 45aa86db310e9f7a510d15dba2f77c16f68fac3a Mon Sep 17 00:00:00 2001 From: Hayk Martiros Date: Thu, 24 Nov 2022 14:53:51 -0800 Subject: [PATCH] Disable strict mode --- next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 91ef62f..24f1a90 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - reactStrictMode: true, + reactStrictMode: false, }; module.exports = nextConfig;