feat(platform): add vehicle data management console
This commit is contained in:
15
vehicle-data-platform/apps/web/vite.config.ts
Normal file
15
vehicle-data-platform/apps/web/vite.config.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import react from '@vitejs/plugin-react';
|
||||
import { defineConfig } from 'vite';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
server: {
|
||||
proxy: {
|
||||
'/api': 'http://127.0.0.1:20300'
|
||||
}
|
||||
},
|
||||
test: {
|
||||
environment: 'jsdom',
|
||||
setupFiles: './src/test/setup.ts'
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user