| 1234567891011121314151617181920212223 |
- # API Base URL
- # This is the base URL for the backend API server
- # Default: http://localhost:8000
- VITE_API_BASE_URL=http://192.168.0.195:8000
- # Application Title
- # This will be displayed in the browser tab
- VITE_APP_TITLE=AX Document Editor
- # Debug Mode
- # Enable debug mode for development
- # Default: false
- VITE_DEBUG=false
- # AI and workflow calls must go through the backend proxy.
- VITE_AI_PROXY_URL=/api/v1/ai/chat
- VITE_WORKFLOW_PROXY_URL=/api/v1/ai/workflow
- # WebMCP Bridge 连接配置
- VITE_WEBMCP_CLIENT_ID=ax-editor-local
- # Local development only. Never configure this in a production build.
- VITE_WEBMCP_BRIDGE_TOKEN=AXWebMCP-04fb7ebd989246b28ca63a49e0efd2c0a27cc8c89e2241fda22b8b0c42c744a1
|