It's a todo list.
7
fork

Configure Feed

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

at main 12 lines 375 B view raw
1import adapter from '@sveltejs/adapter-netlify'; 2import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; 3 4/** @type {import('@sveltejs/kit').Config} */ 5const config = { 6 // Consult https://kit.svelte.dev/docs/integrations#preprocessors 7 // for more information about preprocessors 8 preprocess: vitePreprocess(), 9 kit: { adapter: adapter() } 10}; 11 12export default config;