this repo has no description
16
fork

Configure Feed

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

at 58e12b61305e32ad30b58c0c2667c42cbeea84e0 11 lines 247 B view raw
1import { defineConfig } from "vite"; 2import { svelte } from "@sveltejs/vite-plugin-svelte"; 3import { themePlugin } from "./theming"; 4 5// https://vite.dev/config/ 6export default defineConfig({ 7 plugins: [ 8 themePlugin(), 9 svelte(), 10 ], 11});