/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: ['www.daalchini.co.in'], // Allow images from this domain
},
async rewrites() {
return [
{
source: '/vending-machine-franchise.html', // URL with .html
destination: '/vending-machine-franchise', // Actual route
},
];
},
};
export default nextConfig; // Use export default for .mjs files