blob: 32e2307c6c12adc72a41a129f2b67b15f0d5058d (
plain)
1
2
3
4
5
6
7
|
import { redirect } from '@sveltejs/kit';
import type { PageServerLoad } from './$types';
export const load: PageServerLoad = async () => {
throw redirect(303, '/dashboard/keys');
};
|