feat(web): Update to latest version of SvelteKit (#705)

This commit is contained in:
Alex
2022-09-16 23:13:22 -05:00
committed by GitHub
parent 75c2067836
commit 0d13b25f56
14 changed files with 5522 additions and 2273 deletions

View File

@@ -72,7 +72,7 @@
<div class="flex flex-wrap gap-8">
{#each $albums as album}
{#key album.id}
<a sveltekit:prefetch href={`albums/${album.id}`}>
<a data-sveltekit-prefetch href={`albums/${album.id}`}>
<AlbumCard
{album}
on:showalbumcontextmenu={(e) => showAlbumContextMenu(e.detail, album)}