aboutsummaryrefslogtreecommitdiffstats
path: root/svelte.config.js
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2025-06-22 11:25:31 +0200
committerrtkay123 <dev@kanjala.com>2025-06-22 11:25:31 +0200
commit333bcef4a58d16eb5a8940e9d08d32caa9db4480 (patch)
tree1e81da403c189af6d0e5b800d2ccfb105c209792 /svelte.config.js
downloadkanjala.com-333bcef4a58d16eb5a8940e9d08d32caa9db4480.tar.bz2
kanjala.com-333bcef4a58d16eb5a8940e9d08d32caa9db4480.zip
initial commitHEADmaster
Diffstat (limited to 'svelte.config.js')
-rw-r--r--svelte.config.js11
1 files changed, 11 insertions, 0 deletions
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;