[READ-ONLY] Mirror of https://github.com/flo-bit/skywatched. review movies and tv shows, based on at proto skywatched.app
0

Configure Feed

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

skywatched / vite.config.ts
290 B 12 lines
1import { sveltekit } from '@sveltejs/kit/vite'; 2import { defineConfig } from 'vite'; 3import resolve from '@rollup/plugin-node-resolve'; 4 5export default defineConfig({ 6 plugins: [sveltekit(), resolve()], 7 build: { 8 rollupOptions: { 9 external: ['@resvg/resvg-js-linux-x64-gnu'] 10 } 11 } 12});