const mode = 'production'; //devLocal:本地测试、devOnline:线上测试、production:生产环境 let ROOTPATH = 'https://h5.jscnsaas.cn'; // let ROOTPATH = 'https://vr.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 }