
* Redesign * Better form * Remove searchKey * Update macaw * Test setup * fix build * Create curly-jars-doubt.md * Unify vitest to (hopefully) fix build * fix lock * update macaw and review fixes * fix build
13 lines
299 B
TypeScript
13 lines
299 B
TypeScript
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
passWithNoTests: true,
|
|
environment: "jsdom",
|
|
setupFiles: "./src/setup-tests.ts",
|
|
css: false,
|
|
},
|
|
});
|