diff --git a/.knosys/sites/default/next.config.mjs b/.knosys/sites/default/next.config.mjs index 4678774e6..0299ccade 100644 --- a/.knosys/sites/default/next.config.mjs +++ b/.knosys/sites/default/next.config.mjs @@ -1,4 +1,7 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + output: process.env.NODE_ENV === 'production' ? 'export' : undefined, + reactStrictMode: true, +}; export default nextConfig;