Files
2026-08-20 16:31:13 +05:30

11 lines
213 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
reactStrictMode: true,
images: {
unoptimized: true, // Required for static HTML export
},
};
export default nextConfig;