feature/tauri-v2
js 15 lines 386 Bytes
Raw
1 import adapter from '@sveltejs/adapter-static';
2 import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
3
4 /** @type {import('@sveltejs/kit').Config} */
5 const config = {
6 // Consult https://kit.svelte.dev/docs/integrations#preprocessors
7 // for more information about preprocessors
8 preprocess: vitePreprocess(),
9
10 kit: {
11 adapter: adapter(),
12 },
13 };
14
15 export default config;