summaryrefslogtreecommitdiff
path: root/svelte.config.js
blob: 0b4c56ea626e406c2b8d31d3a377cc7ad6cd133e (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;