Files
xyflow/examples/svelte/src/routes/+layout.server.ts
T
2023-10-25 13:23:37 +02:00

9 lines
203 B
TypeScript

import { redirect } from '@sveltejs/kit';
/** @type {import('./$types').LayoutServerLoad} */
export function load({ route }) {
if (route.id === '/') {
throw redirect(307, '/examples/overview');
}
}