import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", // OpenNext configuration for Cloudflare deployment experimental: { // Enable any experimental features if needed }, // Image optimization for Cloudflare images: { unoptimized: false, remotePatterns: [ { protocol: "https", hostname: "images.unsplash.com", port: "", pathname: "/**", }, ], }, }; export default nextConfig;