Spaces:
Sleeping
Sleeping
File size: 263 Bytes
b1ae7de | 1 2 3 4 5 6 | // Centralised API base URL.
// In dev the Vite proxy rewrites /api → localhost:8002 (see vite.config.js).
// In production the .env.production sets VITE_API_BASE to the HF Space URL.
const API: string = import.meta.env.VITE_API_BASE ?? '';
export default API;
|