mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
import { deLocalizeUrl } from '$lib/paraglide/runtime';
|
|
|
|
export const reroute = (request: {
|
|
url: URL;
|
|
fetch: typeof fetch;
|
|
}) => deLocalizeUrl(request.url).pathname;
|