blob: 924632b6b985e96669603b598531f7ff43f33f15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import react from "@vitejs/plugin-react";
import { defineConfig } from "vitest/config";
export default defineConfig({
plugins: [react()],
test: {
globals: true,
env: {
JWT_SECRET: "test-secret-key",
},
},
});
|