const BASE = import.meta.env.BASE_URL.replace(/\/$/, ''); export async function apiFetch(path: string, options?: RequestInit): Promise { const res = await fetch(`${BASE}${path}`, { headers: { 'Content-Type': 'application/json', ...options?.headers }, ...options, }); if (!res.ok) { const body = await res.json().catch(() => ({ error: { message: res.statusText } })); throw new Error(body.error?.message ?? `HTTP ${res.status}`); } return res.json(); }