G-Madhuri's picture
deploy to hf space
7e2f74d
Raw
History Blame Contribute Delete
275 Bytes
const API_BASE = (import.meta.env.VITE_API_URL || '').replace(/\/$/, '');
export function apiUrl(path) {
const normalized = path.startsWith('/') ? path : `/${path}`;
return `${API_BASE}${normalized}`;
}
export function apiHeaders(extra = {}) {
return { ...extra };
}