2024-12-18 15:46:27 +08:00
|
|
|
// 配置
|
|
|
|
const config = {
|
|
|
|
// 接口域名
|
2025-01-02 01:01:23 +08:00
|
|
|
// #ifdef H5
|
2024-12-31 17:07:01 +08:00
|
|
|
host: 'http://localhost:5173',
|
2025-01-02 01:01:23 +08:00
|
|
|
// #endif
|
|
|
|
// #ifndef H5
|
|
|
|
host: 'http://192.168.1.236:8080',
|
|
|
|
// #endif
|
2024-12-18 15:46:27 +08:00
|
|
|
// 上传文件二级路径
|
|
|
|
uploadFilePath: "/homecommon/file/preview?fileName=",
|
|
|
|
// 上传视频二级路径
|
|
|
|
uploadVideoPath: '/homecommon/file/play?fileName=',
|
|
|
|
// 图片大小 单位m
|
|
|
|
img_size: 5,
|
|
|
|
// 视频限制大小 单位m
|
|
|
|
video_size: 300,
|
|
|
|
// h5路径
|
|
|
|
h5: '',
|
|
|
|
// 腾讯im聊天
|
|
|
|
TChat: {
|
|
|
|
// appid
|
|
|
|
SDKAppID: '1600057470',
|
|
|
|
// 验签
|
|
|
|
secretKey: '7d016821bf27a846739e209534abe4c4bba131559b3318e19f8ccf9294e08b29',
|
|
|
|
//
|
|
|
|
userSig: '',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
export default config
|