chore: autotype load

This commit is contained in:
loks0n
2024-02-10 21:52:35 +00:00
parent 2e3cff571a
commit 3e81e7ee36
4 changed files with 8 additions and 12 deletions

View File

@@ -1,6 +1,5 @@
import { redirect } from '@sveltejs/kit';
import type { PageLoad } from './$types';
export const load: PageLoad = async () => {
export function load() {
throw redirect(303, '/docs/tutorials/sveltekit-ssr-auth/step-1');
};
}