From 7684da4aa966bb91a9f1b1ce3067adf4b7f4a71c Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Wed, 14 Jun 2023 02:27:38 +0200 Subject: [PATCH] chore: change to "Strict Mode" in runtime --- next.config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/next.config.js b/next.config.js index 767719f..91ef62f 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,6 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + reactStrictMode: true, +}; -module.exports = nextConfig +module.exports = nextConfig;