Skip to content

Commit aac30e5

Browse files
committed
minor fixes
1 parent 2ab9dba commit aac30e5

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

src/routes/tutorial/[slug]/Menu.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
</a>
166166

167167
<!-- we don't want this to be keyboard-navigable, because the menu button to the left does that job better -->
168-
<!-- svelte-ignore a11y-click-events-have-key-events --->
168+
<!-- svelte-ignore a11y-click-events-have-key-events -->
169169
<h1 on:click={() => (is_open = true)}>
170170
Part {current.part.index + 1} <span class="separator">/</span>
171171
{current.chapter.title} <span class="separator">/</span>

src/routes/tutorial/[slug]/Sidebar.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
}
5252
}}
5353
>
54+
<!-- svelte-ignore a11y-click-events-have-key-events -->
5455
<div
5556
on:click={(e) => {
5657
const node = /** @type {HTMLElement} */ (e.target);

vite.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ export default {
77
target: 'esnext'
88
},
99

10+
logLevel: 'info',
11+
1012
plugins: [sveltekit()],
1113

1214
server: {
@@ -17,9 +19,11 @@ export default {
1719
ignored: ['**/.apps/**']
1820
}
1921
},
22+
2023
ssr: {
2124
noExternal: ['@sveltejs/site-kit']
2225
},
26+
2327
optimizeDeps: {
2428
exclude: ['@sveltejs/site-kit']
2529
}

0 commit comments

Comments
 (0)