config.js 816 B

1234567891011121314151617181920
  1. // API base URL configuration
  2. //线上 https://minlong.raycos.com.cn
  3. //测试 http://192.168.66.187:8083
  4. //https://backend.qicai321.com
  5. export const apiBaseUrl = 'https://backend.qicai321.com';//'http://192.168.100.187:8083';//
  6. // You can add other global configuration settings here
  7. export const appVersion = '1.0.0';
  8. // 添加文件上传相关配置
  9. // export const uploadConfig = {
  10. // maxRetries: 3, // 最大重试次数
  11. // retryDelay: 1000, // 重试延迟(毫秒)
  12. // chunkSize: 1024 * 1024, // 分块上传大小(1MB)
  13. // timeout: 60000, // 上传超时时间(毫秒)
  14. // validateChecksum: true // 是否验证校验和
  15. // };
  16. // WebSocket URL for person detection (do not hardcode elsewhere)
  17. export const personDetectionWsUrl = `ws://backend.qicai321.com`;