import type { NextConfig } from "next"; const nextConfig: NextConfig = { // @ts-expect-error - Next.js dynamic config allowedDevOrigins: ["*.trycloudflare.com", "192.168.68.99", "localhost"], }; export default nextConfig;