first commit

This commit is contained in:
Alex Rennie-Lis
2026-06-28 23:06:18 +01:00
commit 811bb9dc74
19 changed files with 1991 additions and 0 deletions

12
svelte.config.js Normal file
View File

@@ -0,0 +1,12 @@
import adapter from '@sveltejs/adapter-node'; // Change from '@sveltejs/adapter-auto'
import { vitePreprocess } from '@sveltejs/vite-plugin-vite';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter()
},
preprocess: vitePreprocess()
};
export default config;