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 dccd29f commit c3762fcCopy full SHA for c3762fc
content/tutorial/common/package.json
@@ -9,7 +9,8 @@
9
"devDependencies": {
10
"@sveltejs/kit": "next",
11
"esbuild-wasm": "^0.14.43",
12
- "svelte": "^3.44.0"
+ "svelte": "^3.44.0",
13
+ "vite": "^3.1.3"
14
},
15
"type": "module"
16
}
content/tutorial/common/vite.config.js
@@ -0,0 +1,6 @@
1
+import { sveltekit } from '@sveltejs/kit/vite';
2
+
3
+/** @type {import('vite').UserConfig} */
4
+export default {
5
+ plugins: [sveltekit()]
6
+};
0 commit comments