From bbe3b3a493803d041254631f3f9c66d11c91dd9c Mon Sep 17 00:00:00 2001 From: mohamad Date: Mon, 9 Jun 2025 15:26:19 +0200 Subject: [PATCH] fix: Update API base URL to 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 ddb2a99..e2db33e 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 = {