2022-02-28 23:42:33 +05:30
|
|
|
import { mdsvex } from "mdsvex";
|
|
|
|
import mdsvexConfig from "./mdsvex.config.js";
|
2022-03-01 00:12:52 +05:30
|
|
|
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-05-15 13:56:51 +05:30
|
|
|
|
2022-02-28 23:42:33 +05:30
|
|
|
kit: {
|
|
|
|
adapter: adapter(),
|
2022-05-15 13:56:51 +05:30
|
|
|
prerender: { default: true }
|
2022-02-28 23:42:33 +05:30
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|