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