// 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;