Files
homepage/svelte.config.js
T

24 lines
768 B
JavaScript
Raw Normal View History

2024-12-22 19:45:16 +01:00
import { mdsvex } from 'mdsvex';
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
2024-12-26 12:41:44 +01:00
preprocess: [vitePreprocess(), mdsvex({
extensions: ['.md'],
})],
2024-12-22 19:45:16 +01:00
kit: {
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
adapter: adapter()
},
2024-12-26 12:41:44 +01:00
extensions: ['.svelte', '.md']
2024-12-22 19:45:16 +01:00
};
export default config;