- Created React application with TypeScript and Material-UI - Implemented dashboard with service health monitoring - Added Services and Users management pages - Configured Nginx as reverse proxy to backend - Successfully integrated frontend with Console backend 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
332 B
TypeScript
17 lines
332 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
host: '0.0.0.0',
|
|
port: 3000,
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://console-backend:8000',
|
|
changeOrigin: true
|
|
}
|
|
}
|
|
}
|
|
}) |