This commit is contained in:
Satria 2026-03-12 21:20:52 +07:00
commit e82ed7a2bd
19 changed files with 644 additions and 0 deletions

11
svelte.config.js Normal file
View file

@ -0,0 +1,11 @@
import adapter from '@sveltejs/adapter-cloudflare';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: { adapter: adapter() },
vitePlugin: {
dynamicCompileOptions: ({ filename }) => ({ runes: !filename.includes('node_modules') })
}
};
export default config;