| 1 | import type { LayoutServerLoad } from "./$types"; |
| 2 | import { redirect } from "@sveltejs/kit"; |
| 3 | |
| 4 | export const load: LayoutServerLoad = async ({ locals }) => { |
| 5 | if (!locals.user?.authenticated) { |
| 6 | throw redirect(302, "/login"); |
| 7 | } |
| 8 | return {}; |
| 9 | }; |