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.
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
export { ROOTPATH, WECHAT_APPID }
|