client/src/routes/app/+page.server.ts (view raw)
1 2 3 4 5 6 7 8 9
import type { PageServerLoad } from './$types'; export const load: PageServerLoad = async (events) => { const session = await events.locals.auth(); return { session }; };