import { API_BASE } from "../constants"; export async function api(path, opts = {}) { const res = await fetch(API_BASE + path, { credentials: "include", cache: "no-store", headers: { "Content-Type": "application/json" }, ...opts, }); if (!res.ok) throw new Error(await res.text()); return res.json(); }