import type { NextConfig } from "next"; const nextConfig: NextConfig = { allowedDevOrigins: ["*.trycloudflare.com"], images: { remotePatterns: [ { protocol: "http", hostname: "localhost" }, { protocol: "http", hostname: "127.0.0.1" }, { protocol: "https", hostname: "*.trycloudflare.com" }, { protocol: "https", hostname: "replicate.delivery" }, { protocol: "https", hostname: "*.replicate.delivery" }, ], }, }; export default nextConfig;