We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b33abb4 commit 93c9bb3Copy full SHA for 93c9bb3
src/routes/+page.server.ts
@@ -1,5 +1,5 @@
1
-import type { PageLoad } from "./$types";
2
-export const load: PageLoad = async () => {
+import type { PageServerLoad } from "./$types";
+export const load: PageServerLoad = async () => {
3
const r1 = fetch("https://api.github.com/repos/KTibow/m3-svelte");
4
const r2 = fetch("https://discord.com/api/v10/invites/sRzVYM9b47?with_counts=true");
5
const { stargazers_count } = await (await r1).json();
0 commit comments