mirror of
https://github.com/zadam/trilium.git
synced 2025-11-09 13:21:33 +08:00
6 lines
174 B
TypeScript
6 lines
174 B
TypeScript
import { deLocalizeUrl } from '$lib/paraglide/runtime';
|
|
|
|
export const reroute = (request: {
|
|
url: URL;
|
|
fetch: typeof fetch;
|
|
}) => deLocalizeUrl(request.url).pathname;
|