summaryrefslogtreecommitdiff
path: root/svelte.config.js
blob: d7a9a549daa2b05d9c9731cee7db7bc2fb0f490d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { mdsvex } from 'mdsvex';
import adapter from '@sveltejs/adapter-static';
import mdsvexConfig from './mdsvex.config.js';

/** @type {import('@sveltejs/kit').Config} */
const config = {
	kit: { adapter: adapter() },
	preprocess: [mdsvex(mdsvexConfig)],
	extensions: ['.svelte', '.svx']
};

export default config;