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

7 lines
146 B
TypeScript
Raw Normal View History

2023-05-21 05:18:04 +00:00
export const load = async (event: { locals: { user: any }; url: URL }) => {
return {
2023-05-21 05:18:04 +00:00
url: event.url.pathname,
user: event.locals.user
};
2023-05-21 05:18:04 +00:00
};