From fea788bdc42f16c5f256df9563b7911c8c3b4daa Mon Sep 17 00:00:00 2001 From: Tiago Ribeiro Date: Fri, 21 Jul 2023 10:43:15 +0100 Subject: [PATCH] Updated the next.config.js --- next.config.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/next.config.js b/next.config.js index a843cbee..481272cf 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - reactStrictMode: true, -} + reactStrictMode: true, + output: "standalone", +}; -module.exports = nextConfig +module.exports = nextConfig;