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