Blog
All checks were successful
Deploy / build-and-publish (push) Successful in 1m20s
Deploy / deploy (push) Successful in 15s

This commit is contained in:
2024-09-29 22:45:41 +03:00
parent e4c7fb1557
commit 1d6da125f1
9 changed files with 396 additions and 4 deletions

View File

@@ -1,9 +1,14 @@
import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import {mdsvex} from "mdsvex";
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
extensions: ['.svelte', '.svx'],
preprocess: [
vitePreprocess(),
mdsvex(),
],
kit: {
adapter: adapter()
}