Files
root-org/src/routes/+layout.server.ts
AlacrisDevs cfec43f7ef First commit
2026-02-04 23:01:44 +02:00

7 lines
201 B
TypeScript

import type { LayoutServerLoad } from './$types';
export const load: LayoutServerLoad = async ({ locals }) => {
const { session, user } = await locals.safeGetSession();
return { session, user };
};