pedimentos UI

This commit is contained in:
Galindo97
2025-12-23 14:15:05 -06:00
parent d3a0086188
commit 150efdfd99
61 changed files with 1033 additions and 256 deletions

View File

@@ -1,3 +1,4 @@
import { deLocalizeUrl } from '$lib/paraglide/runtime';
import type { RequestEvent } from '@sveltejs/kit';
export const reroute = (request) => deLocalizeUrl(request.url).pathname;
export const reroute = (request: { url: string }) => deLocalizeUrl(request.url).pathname;