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

8 lines
159 B
TypeScript

import type { LayoutServerLoad } from "./$types"
export const load: LayoutServerLoad = async ({ locals }) => {
const { user } = locals
return { user }
}