From 333bcef4a58d16eb5a8940e9d08d32caa9db4480 Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Sun, 22 Jun 2025 11:25:31 +0200 Subject: initial commit --- svelte.config.js | 11 +++++++++++ 1 file changed, 11 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..2c443fe --- /dev/null +++ b/svelte.config.js @@ -0,0 +1,11 @@ +import { mdsvex } from 'mdsvex'; +import adapter from '@sveltejs/adapter-static'; +import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; + +const config = { + preprocess: [vitePreprocess(), mdsvex()], + kit: { adapter: adapter() }, + extensions: ['.svelte', '.svx'] +}; + +export default config; -- cgit v1.2.3