From d9f759c879351faf3e72d7cf6ac9f37776c9a7c9 Mon Sep 17 00:00:00 2001 From: Jonas Plum Date: Sun, 21 Sep 2025 11:02:00 +0200 Subject: [PATCH] fix: ui basePath (#1152) --- ui/src/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/api.ts b/ui/src/api.ts index 0993061..c830289 100644 --- a/ui/src/api.ts +++ b/ui/src/api.ts @@ -5,7 +5,7 @@ export function useAPI() { const authStore = useAuthStore() return new DefaultApi( new Configuration({ - basePath: 'http://localhost:8090/api', + basePath: '/api', headers: { 'Content-Type': 'application/json', Accept: 'application/json',