From e28f0c1a5afa4506ad8a2b8e2ae0721b681ca0c0 Mon Sep 17 00:00:00 2001 From: Tiago Ribeiro Date: Mon, 9 Oct 2023 17:19:11 +0100 Subject: [PATCH] Updated the next config --- next.config.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/next.config.js b/next.config.js index 767719f..481272c 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,7 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + reactStrictMode: true, + output: "standalone", +}; -module.exports = nextConfig +module.exports = nextConfig;