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

20 lines
345 B
TypeScript

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