2026-08-20 16:08:29 +05:30
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
2026-08-20 16:31:13 +05:30
|
|
|
output: 'export',
|
2026-08-20 16:08:29 +05:30
|
|
|
reactStrictMode: true,
|
2026-08-20 16:31:13 +05:30
|
|
|
images: {
|
|
|
|
|
unoptimized: true, // Required for static HTML export
|
|
|
|
|
},
|
2026-08-20 16:08:29 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|