fix the build issue

This commit is contained in:
saqib mir
2026-08-20 16:31:13 +05:30
parent 4ffdc3b48b
commit 57b7fcc530
+4
View File
@@ -1,6 +1,10 @@
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = { const nextConfig = {
output: 'export',
reactStrictMode: true, reactStrictMode: true,
images: {
unoptimized: true, // Required for static HTML export
},
}; };
export default nextConfig; export default nextConfig;