* chore(svelte-examples): pull out of lib package * chore(svelte-examples): cleanup * chore(examples): add readme files
9 lines
198 B
TypeScript
9 lines
198 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
|
|
/** @type {import('./$types').LayoutServerLoad} */
|
|
export function load({ route }) {
|
|
if (route.id === '/') {
|
|
throw redirect(307, '/overview');
|
|
}
|
|
}
|