import type { NextConfig } from "next"; const nextConfig: NextConfig = { allowedDevOrigins: ["10.8.0.2"], images: { remotePatterns: [ { protocol: "https", hostname: "*.r2.dev", }, { protocol: "https", hostname: "*.cloudflarestorage.com", }, ], }, }; export default nextConfig;