import type { NextConfig } from "next"; const lotteryApiProxyTarget = process.env.LOTTERY_API_PROXY_TARGET?.trim() || "http://127.0.0.1:8000"; const nextConfig: NextConfig = { reactCompiler: true, async rewrites() { return [ { source: "/api/:path*", destination: `${lotteryApiProxyTarget}/api/:path*`, }, ]; }, }; export default nextConfig;