You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
747 B
26 lines
747 B
//设置环境(打包前修改此变量)
|
|
const ENV = "DEV";
|
|
const UNI_APP = {}
|
|
|
|
// 每个会话最大消息缓存数量,-1表示不限制
|
|
UNI_APP.MAX_MESSAGE_SIZE = 3000;
|
|
// 表情包路径
|
|
UNI_APP.EMO_URL = "/static/emoji/";
|
|
// #ifdef MP-WEIXIN
|
|
// 微信小程序的本地表情包经常莫名失效,建议将表情放到服务器中
|
|
// UNI_APP.EMO_URL = "https://www.boxim.online/emoji/";
|
|
// #endif
|
|
|
|
if(ENV=="DEV"){
|
|
UNI_APP.BASE_URL = "http://127.0.0.1:8888";
|
|
UNI_APP.WS_URL = "ws://127.0.0.1:8878/im";
|
|
// H5 走本地代理解决跨域问题
|
|
// #ifdef H5
|
|
UNI_APP.BASE_URL = "/api";
|
|
// #endif
|
|
}
|
|
if(ENV=="PROD"){
|
|
UNI_APP.BASE_URL = "https://www.boxim.online/api";
|
|
UNI_APP.WS_URL = "wss://www.boxim.online/im";
|
|
}
|
|
export default UNI_APP
|