]>
Commit | Line | Data |
---|---|---|
a7cf03c1 RBR |
1 | import adapter from '@sveltejs/adapter-auto'; |
2 | import preprocess from 'svelte-preprocess'; | |
010f3073 RBR |
3 | |
4 | /** @type {import('@sveltejs/kit').Config} */ | |
a7cf03c1 | 5 | const config = { |
cac85db0 RBR |
6 | // Consult https://github.com/sveltejs/svelte-preprocess |
7 | // for more information about preprocessors | |
8 | preprocess: preprocess(), | |
010f3073 | 9 | |
cac85db0 RBR |
10 | kit: { |
11 | adapter: adapter() | |
12 | } | |
010f3073 | 13 | }; |
a7cf03c1 RBR |
14 | |
15 | export default config; |