imetting_client/.env.example

23 lines
628 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# API 后端地址配置示例
# 开发环境可以使用代理vite.config.js中配置或直接指定后端地址
# 后端 API 地址(不需要 /api 后缀,会自动添加)
VITE_API_BASE_URL=http://localhost:8000/api
# 录音配置
# 分片上传间隔毫秒默认1000010秒
VITE_AUDIO_CHUNK_INTERVAL=10000
# 其他示例:
# 生产环境
# VITE_API_BASE_URL=https://api.yourserver.com/api
# 其他服务器
# VITE_API_BASE_URL=http://192.168.1.100:8000/api
# 更频繁的上传5秒
# VITE_AUDIO_CHUNK_INTERVAL=5000
# 更长的上传间隔30秒
# VITE_AUDIO_CHUNK_INTERVAL=30000