28 lines
856 B
Plaintext
28 lines
856 B
Plaintext
# 生产环境配置
|
|
NODE_ENV=production
|
|
|
|
# API 基础URL
|
|
VITE_API_BASE_URL=https://api.yourdomain.com/api
|
|
|
|
# 应用标题
|
|
VITE_APP_TITLE=我的应用
|
|
|
|
# 是否开启调试模式
|
|
VITE_DEBUG=false
|
|
|
|
# 是否开启mock数据
|
|
VITE_USE_MOCK=false
|
|
|
|
# 日志级别 (debug, info, warn, error)
|
|
VITE_LOG_LEVEL=error
|
|
|
|
# 是否启用开发者工具
|
|
VITE_ENABLE_DEVTOOLS=false
|
|
|
|
# CDN 基础URL (如果使用CDN)
|
|
VITE_CDN_BASE_URL=https://cdn.yourdomain.com
|
|
|
|
# 应用版本
|
|
VITE_APP_VERSION=1.0.0
|
|
|
|
VITE_PUBLIC='https://cdn.files.zguiy.com/static/' |