Filip Kujawa | 3a0fbf3 | 2023-03-31 14:25:26 -0700 | [diff] [blame^] | 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: [ | ||||
9 | preprocess({ | ||||
10 | postcss: true | ||||
11 | }) | ||||
12 | ], | ||||
13 | |||||
14 | kit: { | ||||
15 | adapter: adapter() | ||||
16 | } | ||||
17 | }; | ||||
18 | |||||
19 | export default config; |