summaryrefslogtreecommitdiff
path: root/svelte.config.js
blob: 91df49e13a6ecd65e26d2a093f122042e7b65d56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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(),
		paths: { relative: false },
		inlineStyleThreshold: 100_000
	},
	preprocess: [mdsvex(mdsvexConfig)],
	extensions: ['.svelte', '.svx']
};

export default config;