mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-11 15:53:59 +00:00
7 lines
165 B
TypeScript
7 lines
165 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
import type { PageLoad } from './$types';
|
|
|
|
export const load: PageLoad = async () => {
|
|
return redirect(302, '/login');
|
|
};
|