orchestry-mcp
Version:
Orchestry MCP Server for multi-session task management
22 lines (20 loc) • 520 B
text/typescript
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: parseInt(process.env.WEB_PORT || '7530'),
proxy: {
'/api': {
target: `http://localhost:${process.env.API_PORT || '7531'}`,
changeOrigin: true,
},
'/socket.io': {
target: `http://localhost:${process.env.API_PORT || '7531'}`,
ws: true,
changeOrigin: true,
},
},
},
})