/** @type {import('next').NextConfig} */ const nextConfig = { reactCompiler: true, async rewrites() { return [ { source: "/api/:path*", destination: "http://localhost:8080/api/:path*", }, ]; }, }; export default nextConfig;