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

12 lines
251 B
TypeScript
Raw Normal View History

import { loadFlash } from 'sveltekit-flash-message/server';
import type { LayoutServerLoad } from './$types';
export const load: LayoutServerLoad = async ({ url, locals }) => {
return {
url: url.pathname,
user: locals.user
};
2023-05-21 05:18:04 +00:00
};
// loadFlash(