Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
export async function load({ fetch }) { | |
const response = await fetch("/api/community?page=0&filter=new", { | |
method: "GET", | |
headers: { | |
"Content-Type": "application/json" | |
} | |
}) | |
const data = await response.json() | |
return data | |
} |