@mcp-shark/mcp-shark
Version:
Aggregate multiple Model Context Protocol (MCP) servers into a single unified interface with a powerful monitoring UI. Prov deep visibility into every request and response.
19 lines (17 loc) • 348 B
JavaScript
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/api': {
target: 'http://localhost:9853',
changeOrigin: true,
},
'/ws': {
target: 'ws://localhost:9853',
ws: true,
},
},
},
});