mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-13 00:15:14 +00:00
6 lines
113 B
TypeScript
6 lines
113 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
|
|
export function load() {
|
|
throw redirect(307, '/settings/account');
|
|
}
|