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.
24 lines
407 B
24 lines
407 B
import Config from '@/config/index.js';
|
|
var config = {
|
|
|
|
// api请求地址
|
|
baseUrl: Config.baseUrl,
|
|
|
|
// 图片域名
|
|
imgDomain: Config.imgDomain,
|
|
|
|
// H5端域名
|
|
h5Domain: '{{$h5Domain}}',
|
|
|
|
// 腾讯地图key
|
|
mpKey: '{{$mpKey}}',
|
|
|
|
//客服地址
|
|
webSocket: '{{$webSocket}}',
|
|
|
|
//本地端主动给服务器ping的时间, 0 则不开启 , 单位秒
|
|
pingInterval: 1500,
|
|
|
|
};
|
|
|
|
export default config;
|
|
|