From ee064402055794385877d0e6c5f24641b9eb88f5 Mon Sep 17 00:00:00 2001 From: qqwas <49227824+qqwas@users.noreply.github.com> Date: Mon, 6 Apr 2026 14:54:50 +0800 Subject: [PATCH] fix(frontend): Update route.ts default backend port(#1892) --- frontend/src/app/api/memory/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);