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
627 B

This file contains ambiguous Unicode characters!

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