We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c562fbb commit cc3cd30Copy full SHA for cc3cd30
src/app.html
@@ -7,7 +7,7 @@
7
<meta name="color-scheme" content="dark light" />
8
%sveltekit.head%
9
</head>
10
- <body>
+ <body data-sveltekit-preload-data="hover">
11
<div>%sveltekit.body%</div>
12
</body>
13
</html>
src/routes/tutorial/[slug]/Menu.svelte
@@ -135,11 +135,7 @@
135
? 'page'
136
: undefined}
137
>
138
- <a
139
- data-sveltekit-preload-data
140
- href="/tutorial/{exercise.slug}"
141
- on:click={() => (is_open = false)}
142
- >
+ <a href="/tutorial/{exercise.slug}" on:click={() => (is_open = false)}>
143
{exercise.title}
144
</a>
145
</li>
0 commit comments