Create project skeleton with sv

This commit is contained in:
2026-05-13 17:40:55 -04:00
commit 6f8a187246
24 changed files with 2396 additions and 0 deletions

12
svelte.config.js Normal file
View File

@@ -0,0 +1,12 @@
import adapter from '@sveltejs/adapter-static';
/** @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;