2025-02-23 00:53:57 +01:00
|
|
|
import { mdsvex } from 'mdsvex';
|
2025-01-24 19:04:29 +01:00
|
|
|
import adapter from '@sveltejs/adapter-node';
|
|
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
|
|
|
// Consult https://svelte.dev/docs/kit/integrations
|
|
|
|
// for more information about preprocessors
|
2025-02-23 00:53:57 +01:00
|
|
|
preprocess: [vitePreprocess(), mdsvex()],
|
2025-01-24 19:04:29 +01:00
|
|
|
|
|
|
|
kit: {
|
|
|
|
adapter: adapter()
|
2025-02-23 00:53:57 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
extensions: ['.svelte', '.svx']
|
2025-01-24 19:04:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|