Spaces:
Sleeping
Sleeping
File size: 290 Bytes
743409d | 1 2 3 4 5 6 | // Dynamic API URL resolution for local and production environments
export const API_BASE_URL = (import.meta.env.VITE_API_URL as string) ||
(window.location.hostname === 'localhost' || window.location.hostname === '127.0.0.1'
? 'http://127.0.0.1:8000'
: window.location.origin);
|