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;