Files
stellar/client/vite.config.js
jason aeadb80fdb
Some checks failed
CI / validate (push) Has been cancelled
m3
2026-03-23 00:16:50 -05:00

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"
}
});