Usando SvelteKit , digamos que estoy en players/<PLAYER_ID>/settings/__layout.svelte y necesito dos páginas anidadas más:
/profile en /players/[PLAYER_ID]/settings/profile.svelte/notifications en /players/[PLAYER_ID]/settings/notifications.svelte . En __layout.svelte tengo los enlaces:
<a href={`/players/${player.id}/settings/profile`}>Profile</a> <a href={`/players/${player.id}/settings/notifications`}>Notifications</a> ¿Hay alguna manera de evitar todos los enlaces en ese href ?
¿Algo así como /notifications solamente?