From 35556dca71eafdac4eb5d2fe781ba39687d0b058 Mon Sep 17 00:00:00 2001 From: Berke Güzel Date: Thu, 29 Jan 2026 23:56:21 +0300 Subject: initial commit --- svelte.config.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 svelte.config.js (limited to 'svelte.config.js') diff --git a/svelte.config.js b/svelte.config.js new file mode 100644 index 0000000..d7a9a54 --- /dev/null +++ b/svelte.config.js @@ -0,0 +1,12 @@ +import { mdsvex } from 'mdsvex'; +import adapter from '@sveltejs/adapter-static'; +import mdsvexConfig from './mdsvex.config.js'; + +/** @type {import('@sveltejs/kit').Config} */ +const config = { + kit: { adapter: adapter() }, + preprocess: [mdsvex(mdsvexConfig)], + extensions: ['.svelte', '.svx'] +}; + +export default config; -- cgit v1.2.3