19 lines
598 B
Plaintext
19 lines
598 B
Plaintext
# ========================================
|
|
# 前端环境变量配置示例
|
|
# ========================================
|
|
# 注意:实际的环境变量配置现在统一在 backend/.env 文件中
|
|
# 这个文件仅作为参考,实际部署时需要将这些变量设置到运行环境中
|
|
|
|
# API Configuration
|
|
VITE_API_BASE_URL=http://localhost:8000/api
|
|
|
|
# App Configuration
|
|
VITE_APP_TITLE=TH-Agenter
|
|
VITE_APP_VERSION=1.0.0
|
|
|
|
# Development Configuration
|
|
VITE_ENABLE_MOCK=false
|
|
|
|
# File Upload Configuration
|
|
VITE_UPLOAD_MAX_SIZE=10485760
|
|
VITE_SUPPORTED_FILE_TYPES=pdf,txt,md,doc,docx,ppt,pptx,xls,xlsx |