mirror of
https://github.com/seriousm4x/UpSnap.git
synced 2026-07-23 14:03:47 -04:00
7 lines
198 B
TypeScript
7 lines
198 B
TypeScript
import { deLocalizeUrl } from '$lib/paraglide/runtime';
|
|
import type { Reroute } from '@sveltejs/kit';
|
|
|
|
export const reroute: Reroute = (request) => {
|
|
return deLocalizeUrl(request.url).pathname;
|
|
};
|