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

9 lines
No EOL
202 B
TypeScript

import { loadFlash } from "sveltekit-flash-message/server";
export const load = loadFlash(async ({ locals }) => {
const authedUser = await locals.getAuthedUser();
return {
authedUser,
};
});