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