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