From 93e364466af2b9baad09e0e48e84f14518b0da3d Mon Sep 17 00:00:00 2001 From: Z User Date: Tue, 24 Mar 2026 03:13:33 +0000 Subject: [PATCH] fix: Add /api prefix to frontend API base URL --- frontend/src/lib/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/api.js b/frontend/src/lib/api.js index e5d918a..d021c00 100644 --- a/frontend/src/lib/api.js +++ b/frontend/src/lib/api.js @@ -1,4 +1,4 @@ -const API_BASE = import.meta.env.VITE_API_URL || 'http://localhost:8000'; +const API_BASE = import.meta.env.VITE_API_URL || 'http://localhost:8000/api'; class ApiClient { constructor() {