22 lines
490 B
JavaScript
22 lines
490 B
JavaScript
import adapter from "@sveltejs/adapter-node";
|
|
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
|
|
import { mdsvex } from 'mdsvex';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://svelte.dev/docs/kit/integrations
|
|
// for more information about preprocessors
|
|
extensions: ['.svelte', '.md'],
|
|
|
|
preprocess: [
|
|
vitePreprocess(),
|
|
mdsvex({
|
|
extensions: ['.md']
|
|
})
|
|
],
|
|
|
|
kit: { adapter: adapter() },
|
|
};
|
|
|
|
|
|
export default config;
|