Files
geointel/frontend/vite.config.ts
T
Codex 55685ba1bd
GeoIntel release gates / Compile, test, contracts and builds (push) Canceled after 0s
GeoIntel release gates / Python and npm vulnerability policy (push) Canceled after 0s
GeoIntel release gates / GIS image, SBOM and container scan (push) Canceled after 0s
Automate RC8 release journeys
2026-07-18 06:07:44 +02:00

41 lines
864 B
TypeScript

import { defineConfig } from 'vitest/config'
import react from '@vitejs/plugin-react'
declare const process: { env: Record<string, string | undefined> }
const apiProxyTarget = process.env.VITE_API_PROXY_TARGET ?? 'http://localhost:8000'
export default defineConfig({
plugins: [react()],
test: {
environment: 'jsdom',
include: ['src/**/*.test.{ts,tsx}'],
clearMocks: true,
restoreMocks: true,
},
build: {
chunkSizeWarningLimit: 900,
rollupOptions: {
output: {
manualChunks: {
maplibre: ['maplibre-gl'],
vendor: ['react', 'react-dom'],
},
},
},
},
server: {
port: 5173,
proxy: {
'/api': {
target: apiProxyTarget,
changeOrigin: true,
},
'/health': {
target: apiProxyTarget,
changeOrigin: true,
},
},
},
})