2022-08-11 12:03:51 +00:00
|
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
|
|
|
plugins: [react()],
|
|
|
|
test: {
|
|
|
|
environment: "jsdom",
|
|
|
|
setupFiles: "./src/setup-tests.ts",
|
|
|
|
css: false,
|
2022-09-16 09:01:02 +00:00
|
|
|
coverage: {
|
|
|
|
provider: "c8",
|
|
|
|
reporter: ["text-summary", "cobertura"],
|
|
|
|
},
|
2022-08-11 12:03:51 +00:00
|
|
|
},
|
|
|
|
});
|