32 lines
576 B
TypeScript
32 lines
576 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 8080,
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost:3100',
|
|
changeOrigin: true
|
|
},
|
|
'/bus': {
|
|
target: 'http://localhost:3100',
|
|
changeOrigin: true
|
|
}
|
|
}
|
|
},
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
setupFiles: './test/setup.ts',
|
|
pool: 'forks',
|
|
poolOptions: {
|
|
forks: {
|
|
maxForks: 4,
|
|
minForks: 1,
|
|
},
|
|
},
|
|
},
|
|
})
|