diff --git a/frontend/src/app/api/memory/route.ts b/frontend/src/app/api/memory/route.ts index 22a840465..2957c69c1 100644 --- a/frontend/src/app/api/memory/route.ts +++ b/frontend/src/app/api/memory/route.ts @@ -1,7 +1,7 @@ import type { NextRequest } from "next/server"; const BACKEND_BASE_URL = - process.env.NEXT_PUBLIC_BACKEND_BASE_URL ?? "http://127.0.0.1:8010"; + process.env.NEXT_PUBLIC_BACKEND_BASE_URL ?? "http://127.0.0.1:8001"; function buildBackendUrl(pathname: string) { return new URL(pathname, BACKEND_BASE_URL);