Files
hemhub/frontend/vite.config.ts
2026-07-23 22:06:56 +02:00

17 lines
314 B
TypeScript

import react from '@vitejs/plugin-react'
import { defineConfig } from 'vitest/config'
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
'/api': 'http://localhost:8080',
},
},
test: {
environment: 'jsdom',
setupFiles: './src/test/setup.ts',
},
})