8 lines
No EOL
208 B
JavaScript
8 lines
No EOL
208 B
JavaScript
/** @type {import('./$types').PageLoad} */
|
|
export async function load({ fetch }) {
|
|
const res = await fetch(`/api/token`);
|
|
|
|
const username = await res.json();
|
|
|
|
return { username: username.data };
|
|
} |