first commit

This commit is contained in:
William Diakite 2025-03-24 11:51:24 -04:00
commit 5af43e867d
24 changed files with 4067 additions and 0 deletions

11
svelte.config.js Normal file
View file

@ -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({ extensions: ['.svx', '.md'] })],
kit: { adapter: adapter() },
extensions: ['.svelte', '.svx', '.md']
};
export default config;