AdelieStack/src/routes/+layout.server.ts

7 lines
166 B
TypeScript
Raw Normal View History

2024-12-31 22:43:09 +00:00
export const load = async ({ locals }) => {
const authedUser = await locals.getAuthedUser();
console.log('authedUser', authedUser)
2024-12-31 22:43:09 +00:00
return {
authedUser
}
}