my-dosa-place/next.config.mjs
2026-06-11 17:24:30 +05:30

11 lines
176 B
JavaScript

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