Compare commits

..

2 Commits

Author SHA1 Message Date
mo
708a6280d6 Merge pull request 'Update API base URL in api-config.ts to point to the new production environment' (#46) from ph4 into prod
Reviewed-on: #46
2025-06-01 22:16:58 +02:00
mohamad
e6c15210c1 Update API base URL in api-config.ts to point to the new production environment
All checks were successful
Deploy to Production, build images and push to Gitea Registry / build_and_push (pull_request) Successful in 1m16s
2025-06-01 22:16:36 +02:00

View File

@ -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 = {