[READ-ONLY] Mirror of https://github.com/flo-bit/flo-bit.github.io. my personal website, w/ astro, svelte, tailwind, typescript, threlte flo-bit.dev/
portfolio portfolio-website svelte sveltekit tailwind threejs threlte typescript
0

Configure Feed

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

flo-bit.github.io / svelte.config.js
822 B 23 lines
1import adapter from '@sveltejs/adapter-static'; 2import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; 3import { preprocessMeltUI, sequence } from '@melt-ui/pp'; 4 5/** @type {import('@sveltejs/kit').Config} */ 6const config = { 7 // Consult https://kit.svelte.dev/docs/integrations#preprocessors 8 // for more information about preprocessors 9 preprocess: sequence([ 10 // ... other preprocessors 11 vitePreprocess(), 12 preprocessMeltUI() // add to the end! 13 ]), 14 15 kit: { 16 // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. 17 // If your environment is not supported or you settled on a specific environment, switch out the adapter. 18 // See https://kit.svelte.dev/docs/adapters for more information about adapters. 19 adapter: adapter() 20 } 21}; 22 23export default config;