chore(website): create empty SvelteKit project

This commit is contained in:
Elian Doran
2025-06-14 11:05:38 +03:00
parent 297aef788c
commit c43a7df781
23 changed files with 1242 additions and 66 deletions

View File

@@ -0,0 +1,11 @@
import { mdsvex } from 'mdsvex';
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
const config = {
preprocess: [vitePreprocess(), mdsvex()],
kit: { adapter: adapter() },
extensions: ['.svelte', '.svx']
};
export default config;