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

9 lines
202 B
TypeScript
Raw Normal View History

import { loadFlash } from "sveltekit-flash-message/server";
export const load = loadFlash(async ({ locals }) => {
2024-12-31 22:43:09 +00:00
const authedUser = await locals.getAuthedUser();
2024-12-31 22:43:09 +00:00
return {
authedUser,
};
});