fb9cc21c9a
Agent hub dashboard, FastAPI backend, and Docker stack for VM 304 MCP. Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: { host: true, port: 5173 },
|
|
build: { outDir: 'dist' },
|
|
})
|