897ba5fae8
- packages/cli: @uncaged/cli-dashboard (urec + uconn)
- packages/server: dashboard backend (port 3800)
- packages/frontend: React dark theme UI
- Normalized to bun monorepo conventions (TS, Biome, vitest, changesets, CI)
小橘 🍊(NEKO Team)
13 lines
267 B
TypeScript
13 lines
267 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
proxy: {
|
|
'/api': 'http://localhost:3800',
|
|
'/ws': { target: 'ws://localhost:3800', ws: true }
|
|
}
|
|
}
|
|
});
|