A fork of pds-dash for selfhosted.social
0
fork

Configure Feed

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

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