Files
mapcn/next.config.ts
Anmoldeep Singh cbd8ccde76 Docs update
2025-12-28 17:37:07 +05:30

16 lines
264 B
TypeScript

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