17 lines
485 B
TypeScript
17 lines
485 B
TypeScript
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;
|