mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-11 04:22:19 +00:00
7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
import type { PageLoad } from './$types';
|
|
|
|
export const load: PageLoad = async () => {
|
|
throw redirect(303, '/docs/tutorials/vue/step-1');
|
|
};
|