mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-20 20:39:55 +00:00
17 lines
451 B
Bash
Executable File
17 lines
451 B
Bash
Executable File
# 【生产】环境变量 - 覆盖通用配置
|
|
|
|
# 环境标识
|
|
VITE_APP_ENV = production
|
|
|
|
# 项目名称
|
|
VITE_APP_TITLE = FastAPI Admin
|
|
|
|
# API 请求基础路径(生产环境使用完整后端地址)
|
|
VITE_API_BASE_URL = https://service.fastapiadmin.com
|
|
|
|
# 是否删除控制台输出
|
|
VITE_DROP_CONSOLE = true
|
|
|
|
# WebSocket 端点(AI对话功能需要配置,生产环境建议使用 wss)
|
|
VITE_APP_WS_ENDPOINT = wss://service.fastapiadmin.com
|