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