Saving progress

This commit is contained in:
Luke Hagar
2025-08-12 10:35:39 -05:00
parent 70a10f9941
commit 11dbb4e357
104 changed files with 6376 additions and 4825 deletions

20
svelte.config.js Normal file
View File

@@ -0,0 +1,20 @@
import { mdsvex } from 'mdsvex';
import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://svelte.dev/docs/kit/integrations
// for more information about preprocessors
preprocess: [vitePreprocess(), mdsvex()],
kit: {
adapter: adapter(),
experimental: {
// async: true,
remoteFunctions: true
}
},
extensions: ['.svelte', '.svx']
};
export default config;