everything

This commit is contained in:
2026-08-05 20:27:01 +01:00
commit 2b746b2ecb
43 changed files with 6250 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import adapter from '@sveltejs/adapter-static';
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [
sveltekit({
compilerOptions: {
// Force runes mode for the project, except for libraries. Can be removed in svelte 6.
runes: ({ filename }) =>
filename.split(/[/\\]/).includes('node_modules') ? undefined : true
},
adapter: adapter()
})
]
});