// @ts-ignore export async function load({ fetch }) { const res = await fetch('/config'); const data = await res.json(); return { config: data }; }