business goose employment website
3
fork

Configure Feed

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

at main 24 lines 627 B view raw
1// import adapter from '@sveltejs/adapter-auto'; 2import adapter from '@sveltejs/adapter-static'; 3import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; 4 5/** @type {import('@sveltejs/kit').Config} */ 6const config = { 7 // Consult https://svelte.dev/docs/kit/integrations 8 // for more information about preprocessors 9 preprocess: vitePreprocess(), 10 11 kit: { 12 adapter: adapter({ 13 // default options are shown. On some platforms 14 // these options are set automatically — see below 15 pages: 'build', 16 assets: 'build', 17 fallback: undefined, 18 precompress: false, 19 strict: true 20 }) 21 } 22}; 23 24export default config;