- Add EvaluationHook for post-execution agent evaluation - Add SkillAdaptationHook for dynamic skill adaptation - Add team/ directory with team coordination logic - Add TEAM_PIPELINE.yaml for smoke_fullstack pipeline config - Update RuntimeView, TraderView and RuntimeSettingsPanel UI - Add runtimeApi and websocket services - Add runtime_state.json to smoke_fullstack state Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
639 B
JavaScript
29 lines
639 B
JavaScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
allowedHosts: ["localhost", "trading.evoagents.cn","www.evoagents.cn"],
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost:8000',
|
|
changeOrigin: true
|
|
},
|
|
'/ws': {
|
|
target: 'ws://localhost:8765',
|
|
ws: true
|
|
}
|
|
}
|
|
},
|
|
plugins: [react(), tsconfigPaths(),tailwindcss()],
|
|
test: {
|
|
environment: "jsdom"
|
|
},
|
|
preview: {
|
|
host: "0.0.0.0",
|
|
port: 4173
|
|
},
|
|
});
|