Initial Code

This commit is contained in:
2025-10-24 01:32:42 -04:00
parent 62f568794a
commit 844253ed13
19 changed files with 744 additions and 126 deletions

14
svelte.config.js Executable file
View File

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