WIP: My personal website
0

Configure Feed

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

at main 679 B View raw
1import adapter from '@sveltejs/adapter-node'; 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-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list. 11 // If your environment is not supported, or you settled on a specific environment, switch out the adapter. 12 // See https://svelte.dev/docs/kit/adapters for more information about adapters. 13 adapter: adapter() 14 } 15}; 16 17export default config;