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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
const mode = 'production' ; //devLocal: 本地测试、devOnline: 线上测试、production: 生产环境
// let ROOTPATH = 'https://h5.jscnsaas.cn';
// let ROOTPATH = 'https://vr.langye.net';
let ROOTPATH = "https://jscnsaas.115.langye.net"
switch ( mode ) {
case 'devLocal' :
ROOTPATH = ROOTPATH
break ;
case 'devOnline' :
ROOTPATH = ROOTPATH
break ;
case 'production' :
ROOTPATH = ROOTPATH
break ;
default :
throw new Error ( '未配置环境' ) ;
console . log ( ` 未配置环境 ` ) ;
}
// 微信配置
const WECHAT _APPID = 'wx3ff67f2e2b0c62ca' // 从manifest.json中获取的appid
// 天地图( H5 首页地图)
const TIANDITU _TK = '0c86c1c69a09ecaa5e9b3d0373fb67bf'
export { ROOTPATH , WECHAT _APPID , TIANDITU _TK }