mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-20 20:39:55 +00:00
重构主题管理逻辑,将useTheme composable迁移至pinia store中管理 更新页面布局和样式,调整边距和卡片样式 添加新的主题配置文件并移除旧的主题图片资源 优化登录页和设置页的UI交互 更新unocss配置添加更多flex快捷类
22 lines
439 B
Bash
22 lines
439 B
Bash
# 变量必须以 VITE_ 为前缀才能暴露给外部读取
|
|
|
|
# 环境
|
|
VITE_APP_ENV=development
|
|
|
|
# 项目名称
|
|
VITE_APP_TITLE=fastapiadmin
|
|
|
|
# 网络请求公用地址
|
|
VITE_API_BASE_URL=https://service.fastapiadmin.com
|
|
|
|
# 代理前缀
|
|
VITE_APP_BASE_API=/api/v1
|
|
|
|
# 应用端口
|
|
VITE_APP_PORT=5180
|
|
|
|
# 超时时间
|
|
VITE_TIMEOUT=10000
|
|
|
|
# WebSocket 服务器的 URL,不配置默认关闭 WebSocket
|
|
VITE_APP_WS_ENDPOINT= ws://localhost:5180/ws |