Notes/apps/website/src/hooks.ts

7 lines
174 B
TypeScript
Raw Normal View History

import { deLocalizeUrl } from '$lib/paraglide/runtime';
2025-06-14 23:54:19 +03:00
export const reroute = (request: {
url: URL;
fetch: typeof fetch;
}) => deLocalizeUrl(request.url).pathname;