17 lines
332 B
TypeScript
17 lines
332 B
TypeScript
|
|
import { defineConfig } from "vitest/config";
|
||
|
|
import react from "@vitejs/plugin-react";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react()],
|
||
|
|
test: {
|
||
|
|
environment: "jsdom",
|
||
|
|
environmentOptions: {
|
||
|
|
jsdom: {
|
||
|
|
url: "http://localhost/",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
setupFiles: "./src/test/setup.ts",
|
||
|
|
css: false,
|
||
|
|
},
|
||
|
|
});
|