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