blob: 1398542878a0cca6fdaae7d997a11bb0c50d18d0 [file] [log] [blame]
Filip Kujawa3a0fbf32023-03-31 14:25:26 -07001import adapter from '@sveltejs/adapter-auto';
2import preprocess from 'svelte-preprocess';
3
4/** @type {import('@sveltejs/kit').Config} */
5const config = {
6 // Consult https://github.com/sveltejs/svelte-preprocess
7 // for more information about preprocessors
8 preprocess: [
9 preprocess({
10 postcss: true
11 })
12 ],
13
14 kit: {
15 adapter: adapter()
16 }
17};
18
19export default config;