Using SvelteKit, let's say I'm in players/<PLAYER_ID>/settings/__layout.svelte and I need two more nested pages:
/profile in /players/[PLAYER_ID]/settings/profile.svelte/notifications in /players/[PLAYER_ID]/settings/notifications.svelte.In __layout.svelte I have the links:
<a href={`/players/${player.id}/settings/profile`}>Profile</a>
<a href={`/players/${player.id}/settings/notifications`}>Notifications</a>
Is there a way to avoid all the links in that href?
Something like /notifications only?