forked from coracle/flotilla
9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
import {redirect} from "@sveltejs/kit"
|
|
|
|
/** @type {import('./$types').LayoutServerLoad} */
|
|
export function load({route}) {
|
|
if (!route.id) {
|
|
redirect(307, "/home")
|
|
}
|
|
}
|