atprotocol stickers
0
fork

Configure Feed

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

at main 14 lines 296 B view raw
1import adapter from '@sveltejs/adapter-static'; 2import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; 3 4/** @type {import('@sveltejs/kit').Config} */ 5const config = { 6 preprocess: vitePreprocess(), 7 kit: { 8 adapter: adapter({ 9 fallback: 'index.html' 10 }) 11 } 12}; 13 14export default config;