website/svelte.config.js

22 lines
549 B
JavaScript
Raw Normal View History

2022-02-28 23:42:33 +05:30
import { mdsvex } from "mdsvex";
import mdsvexConfig from "./mdsvex.config.js";
import adapter from "@sveltejs/adapter-static";
2022-02-28 23:42:33 +05:30
import preprocess from "svelte-preprocess";
/** @type {import('@sveltejs/kit').Config} */
const config = {
extensions: [".svelte", ...mdsvexConfig.extensions],
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: [preprocess(), mdsvex(mdsvexConfig)],
2022-02-28 23:42:33 +05:30
kit: {
adapter: adapter(),
prerender: { default: true }
2022-02-28 23:42:33 +05:30
},
};
export default config;