mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-04-06 14:46:37 +00:00
8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
import type { PageLoad } from './$types';
|
|
|
|
export const load: PageLoad = async ({ url }) => {
|
|
return {
|
|
token: url.searchParams.get('token') || undefined
|
|
};
|
|
};
|