mirror of
https://github.com/zadam/trilium.git
synced 2025-11-03 13:09:01 +01: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;
|