diff --git a/next.config.mjs b/next.config.mjs index d5456a1..6fdbfb2 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,10 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + output: 'export', reactStrictMode: true, + images: { + unoptimized: true, // Required for static HTML export + }, }; export default nextConfig;