Files
unluckiest/front/src/routes/+page.server.ts
Laurent 7526af0699 Huh
2024-10-28 13:06:31 +00:00

10 lines
236 B
TypeScript

const api_url = import.meta.env.VITE_SERVER_API_URL
// @ts-ignore
export const load = async ( {fetch} ) => {
const res = await fetch(`${api_url}/leaderboard`)
const leaderboard = await res.json()
return { leaderboard };
}