fork of hey-api/openapi-ts because I need some additional things
1import adapter from '@sveltejs/adapter-auto';
2import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
3
4/** @type {import('@sveltejs/kit').Config} */
5const config = {
6 kit: {
7 // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
8 // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
9 // See https://kit.svelte.dev/docs/adapters for more information about adapters.
10 adapter: adapter(),
11 },
12
13 // Consult https://kit.svelte.dev/docs/integrations#preprocessors
14 // for more information about preprocessors
15 preprocess: vitePreprocess(),
16};
17
18export default config;