mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-10 21:19:16 +00:00
7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
import type { PageServerLoad } from './$types';
|
|
|
|
export const load: PageServerLoad = async () => {
|
|
return redirect(302, '/login');
|
|
};
|