[READ-ONLY] Mirror of https://github.com/mrgnw/ananas. learn multiple languages at once ananas.xcc.es
0

Configure Feed

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

ananas / svelte.config.js
368 B 18 lines
1import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; 2import adapter from '@sveltejs/adapter-cloudflare'; 3 4/** @type {import('@sveltejs/kit').Config} */ 5const config = { 6 kit: { 7 adapter: adapter(), 8 alias: { 9 "$jibs": './src/jibs', 10 "$utils": "$lib/utils", 11 "@/*": "./src/lib/*", 12 } 13 }, 14 15 preprocess: [vitePreprocess({})] 16}; 17 18export default config;