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, }, }; export default nextConfig;