19 lines
569 B
Plaintext
19 lines
569 B
Plaintext
# 测试环境配置
|
||
# 使用方式: pnpm build --mode test
|
||
# pnpm build:test
|
||
# 注意:Tauri 打包时如果需要指定 mode,需要结合前端构建命令配置,
|
||
# 但通常 Tauri 直接调用前端 build。
|
||
# 如果要打测试包的 Tauri 应用,可以在 tauri.conf.json 的 beforeBuildCommand 中临时修改为 "pnpm build:test"
|
||
# 应用标题
|
||
VITE_APP_TITLE=TvTa UI (Test)
|
||
|
||
# API 请求基础路径 (测试环境)
|
||
VITE_API_BASE_URL=https://test-api.tvta-ui.com
|
||
|
||
# API 请求超时时间
|
||
VITE_API_TIMEOUT=10000
|
||
|
||
# 默认语言
|
||
VITE_DEFAULT_LOCALE=zh-CN
|
||
|