vite.config.ts
371 bytes
| 1 | import { defineConfig } from "vitest/config"; |
|---|---|
| 2 | import react from "@vitejs/plugin-react"; |
| 3 | |
| 4 | export default defineConfig({ |
| 5 | plugins: [react()], |
| 6 | server: { |
| 7 | port: 5173, |
| 8 | proxy: { |
| 9 | "/api": "http://localhost:8080", |
| 10 | "/uploads": "http://localhost:8080" |
| 11 | } |
| 12 | }, |
| 13 | test: { |
| 14 | environment: "jsdom", |
| 15 | setupFiles: "./src/test/setup.ts", |
| 16 | css: true |
| 17 | } |
| 18 | }); |
| 19 | |