import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' import path from 'path' const LEGACY_BROWSER_TARGETS = ['chrome83', 'edge83', 'firefox78', 'safari14'] export default defineConfig({ plugins: [react()], resolve: { alias: { '@': path.resolve(__dirname, './src'), }, }, build: { target: LEGACY_BROWSER_TARGETS, cssTarget: LEGACY_BROWSER_TARGETS, }, optimizeDeps: { esbuildOptions: { target: LEGACY_BROWSER_TARGETS, }, }, test: { exclude: ['**/node_modules/**', '**/e2e/**'], testTimeout: 30000, hookTimeout: 30000, }, server: { port: 3000, watch: { usePolling: true, interval: 150, }, proxy: { '/api': { target: 'http://localhost:8080', changeOrigin: true, }, '/oauth2': { target: 'http://localhost:8080', changeOrigin: true, }, }, }, })