my-dosa-place-cinematic/next.config.ts
2026-07-14 14:31:41 +05:30

17 lines
279 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
port: "",
pathname: "/**",
},
],
},
};
export default nextConfig;