my-dosa-place/next.config.mjs
2026-06-10 20:04:57 +05:30

10 lines
178 B
JavaScript

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