kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

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

at 9a620ba2f31238f03cd28f1da5ef3838d67e4e8a 21 lines 480 B view raw
1import path from "node:path"; 2import react from "@vitejs/plugin-react"; 3import { defineConfig } from "vitest/config"; 4 5export default defineConfig({ 6 plugins: [react()], 7 test: { 8 environment: "jsdom", 9 setupFiles: ["./src/test/setup.ts"], 10 include: ["src/**/*.test.{ts,tsx}"], 11 coverage: { 12 enabled: false, 13 }, 14 }, 15 resolve: { 16 alias: { 17 "@": path.resolve(__dirname, "./src"), 18 "@i18n": path.resolve(__dirname, "../../i18n"), 19 }, 20 }, 21});