From 57b7fcc530b88b614f5e4052a4606d989c201c70 Mon Sep 17 00:00:00 2001 From: saqib mir Date: Thu, 20 Aug 2026 16:31:13 +0530 Subject: [PATCH] fix the build issue --- next.config.mjs | 4 ++++ 1 file changed, 4 insertions(+) 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;