From 7da93d1fe9e9013609950967fdef0da648178651 Mon Sep 17 00:00:00 2001 From: mohamad Date: Sun, 1 Jun 2025 21:06:40 +0200 Subject: [PATCH] Update API base URL in api-config.ts to point to the production environment --- fe/src/config/api-config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/src/config/api-config.ts b/fe/src/config/api-config.ts index 19a3f4f..052aade 100644 --- a/fe/src/config/api-config.ts +++ b/fe/src/config/api-config.ts @@ -2,7 +2,7 @@ export const API_VERSION = 'v1' // API Base URL -export const API_BASE_URL = (window as any).ENV?.VITE_API_URL || 'http://localhost:8000' +export const API_BASE_URL = (window as any).ENV?.VITE_API_URL || 'https://mitlistbe.mohamad.dev' // API Endpoints export const API_ENDPOINTS = {