Files
support_frontend/next.config.mjs
T

11 lines
213 B
JavaScript
Raw Normal View History

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;