diff --git a/frontend/next.config.mjs b/frontend/next.config.mjs index aba95b6..af90794 100644 --- a/frontend/next.config.mjs +++ b/frontend/next.config.mjs @@ -17,11 +17,11 @@ const nextConfig = { return [ { source: "/api/:path*", - destination: "http://localhost:8000/api/:path*", + destination: "http://127.0.0.1:8000/api/:path*", }, { source: "/health", - destination: "http://localhost:8000/health", + destination: "http://127.0.0.1:8000/health", }, ]; },