pngwn
asd
cba1352
raw
history blame
154 Bytes
// @ts-ignore
export async function load({ fetch }) {
const res = await fetch('/config');
const data = await res.json();
return {
config: data
};
}