]> git.r.bdr.sh - rbdr/forum/blob - svelte.config.js
Update / use typescript
[rbdr/forum] / svelte.config.js
1 import adapter from '@sveltejs/adapter-auto';
2 import preprocess from 'svelte-preprocess';
3
4 /** @type {import('@sveltejs/kit').Config} */
5 const config = {
6 // Consult https://github.com/sveltejs/svelte-preprocess
7 // for more information about preprocessors
8 preprocess: preprocess(),
9
10 kit: {
11 adapter: adapter()
12 }
13 };
14
15 export default config;