25 lines
564 B
TypeScript
25 lines
564 B
TypeScript
|
|
import { defineConfig } from 'vitest/config'
|
||
|
|
import react from '@vitejs/plugin-react'
|
||
|
|
|
||
|
|
// https://vitejs.dev/config/
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react()],
|
||
|
|
|
||
|
|
server: {
|
||
|
|
proxy: {
|
||
|
|
'/api': 'http://localhost:8000',
|
||
|
|
'/login': 'http://localhost:8000',
|
||
|
|
'/logout': 'http://localhost:8000',
|
||
|
|
'/static': 'http://localhost:8000',
|
||
|
|
'/docs': 'http://localhost:8000',
|
||
|
|
'/openapi.json': 'http://localhost:8000',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
|
||
|
|
test: {
|
||
|
|
environment: 'jsdom',
|
||
|
|
globals: true,
|
||
|
|
setupFiles: ['./src/test-setup.ts'],
|
||
|
|
},
|
||
|
|
})
|