feat: more progress

This commit is contained in:
Alexander Daichendt 2022-06-10 18:30:54 +02:00
parent 0cac6145a2
commit 53738961bb
15 changed files with 634 additions and 39 deletions

View file

@ -1,11 +1,15 @@
import adapter from '@sveltejs/adapter-auto';
import preprocess from 'svelte-preprocess';
import mdsvexConfig from './mdsvex.config.js';
import { mdsvex } from 'mdsvex';
/** @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(),
preprocess: [mdsvex(mdsvexConfig), preprocess()],
kit: {
adapter: adapter()