[READ-ONLY] Mirror of https://github.com/flo-bit/svelte-swiper-cards. tinder like swipeable cards component for svelte flo-bit.dev/svelte-swiper-cards/
javascript svelte sveltekit swipeable tinder-ui typescript
0

Configure Feed

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

svelte-swiper-cards / svelte.config.js
725 B 21 lines
1import adapter from '@sveltejs/adapter-static'; 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 10 kit: { 11 // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. 12 // If your environment is not supported or you settled on a specific environment, switch out the adapter. 13 // See https://kit.svelte.dev/docs/adapters for more information about adapters. 14 adapter: adapter(), 15 paths: { 16 base: '/svelte-swiper-cards' 17 } 18 } 19}; 20 21export default config;