7 lines
201 B
TypeScript
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 };
|
|
};
|