From 55b37cc6115010a8cbffa8feac7eaf8cd0d13a92 Mon Sep 17 00:00:00 2001 From: goulustis Date: Thu, 5 Mar 2026 11:25:08 +0800 Subject: [PATCH] change defualt port --- frontend/src/api/frontApis.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/api/frontApis.ts b/frontend/src/api/frontApis.ts index 3b19a97..3626e91 100644 --- a/frontend/src/api/frontApis.ts +++ b/frontend/src/api/frontApis.ts @@ -14,7 +14,7 @@ import type { } from "../types"; const API_BASE_URL = - import.meta.env.VITE_FRONT_API_BASE_URL?.trim() || "http://127.0.0.1:8001"; + import.meta.env.VITE_FRONT_API_BASE_URL?.trim() || "http://127.0.0.1:8500"; async function fetchJson(path: string, init?: RequestInit): Promise { const response = await fetch(`${API_BASE_URL}${path}`, {