config.js 617 B

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