18 lines
422 B
JavaScript
18 lines
422 B
JavaScript
import { defineConfig } from "vitest/config";
|
|
import react from "@vitejs/plugin-react";
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 5173,
|
|
proxy: {
|
|
"/api": "http://localhost:3000",
|
|
"/healthz": "http://localhost:3000"
|
|
}
|
|
},
|
|
test: {
|
|
environment: "jsdom",
|
|
globals: true,
|
|
setupFiles: "./src/vitest.setup.ts"
|
|
}
|
|
});
|