Our Personal Data Server from scratch!
0
fork

Configure Feed

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

at fix/code-quality-in-general 6 lines 242 B view raw
1import process from "node:process"; 2import { vitePreprocess } from "@sveltejs/vite-plugin-svelte"; 3const isTest = process.env.VITEST === "true" || process.env.VITEST === true; 4export default { 5 preprocess: isTest ? [] : vitePreprocess(), 6};