a template starter repo for sveltekit projects
0

Configure Feed

Select the types of activity you want to include in your feed.

suede / svelte.config.js
510 B 20 lines
1import adapter from '@sveltejs/adapter-cloudflare'; 2 3/** @type {import('@sveltejs/kit').Config} */ 4const config = { 5 compilerOptions: { 6 // Force runes mode for the project, except for libraries. Can be removed in svelte 6. 7 runes: ({ filename }) => (filename.split(/[/\\]/).includes('node_modules') ? undefined : true) 8 }, 9 kit: { 10 adapter: adapter(), 11 typescript: { 12 config: (config) => ({ 13 ...config, 14 include: [...config.include, '../drizzle.config.ts'] 15 }) 16 } 17 } 18}; 19 20export default config;