2024-02-02 21:46:22 +01:00
|
|
|
import adapter from '@sveltejs/adapter-static';
|
2024-01-31 20:17:33 +01:00
|
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
|
|
|
preprocess: vitePreprocess(),
|
|
|
|
kit: {
|
2024-02-02 22:21:30 +01:00
|
|
|
adapter: adapter()
|
2024-01-31 20:17:33 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|