first commit

This commit is contained in:
sbb45
2026-05-21 11:12:29 +05:00
commit 5929d5862f
22 changed files with 2753 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import adapter from '@sveltejs/adapter-node';
/** @type {import('@sveltejs/kit').Config} */
const config = {
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)
},
kit: { adapter: adapter() }
};
export default config;