2024-10-19 01:34:08 +00:00
|
|
|
import adapter from '@sveltejs/adapter-auto';
|
|
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
2024-10-24 21:18:26 +00:00
|
|
|
// Consult https://svelte.dev/docs/kit/integrations
|
2024-10-19 01:34:08 +00:00
|
|
|
// for more information about preprocessors
|
|
|
|
preprocess: vitePreprocess(),
|
|
|
|
|
|
|
|
kit: {
|
2024-10-24 21:18:26 +00:00
|
|
|
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
|
2024-10-19 01:34:08 +00:00
|
|
|
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
|
2024-10-24 21:18:26 +00:00
|
|
|
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
|
2024-10-19 01:34:08 +00:00
|
|
|
adapter: adapter()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|