diff --git a/frontend/next.config.ts b/frontend/next.config.ts index 837f622..b301871 100644 --- a/frontend/next.config.ts +++ b/frontend/next.config.ts @@ -5,7 +5,7 @@ const nextConfig: NextConfig = { rewrites: async () => [ { source: "/api/:path*", - destination: `${process.env.API_URL || "http://localhost:8080"}/:path*`, + destination: `${process.env.API_URL || "http://localhost:8080"}/api/:path*`, }, ], };