Use sveltekit:noscroll/prefetch on internal links

This commit is contained in:
2021-11-17 19:25:40 +01:00
parent 8a53079fa1
commit ac40eedb2f
10 changed files with 16 additions and 12 deletions

View File

@@ -58,7 +58,9 @@
<ul>
{#each links as { icon, iconLabel, url, text }}
<li>
<a href={url} on:click={toggleSwitcher} sveltekit:prefetch>
<a href={url} on:click={toggleSwitcher}
sveltekit:noscroll sveltekit:prefetch
>
<Icon class="icon" icon={icon} label={iconLabel} />
<span>{text}</span>
</a>