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.

17 lines
397 B

3 years ago
const mode = 'devLocal'; //devLocal本地测试、devOnline线上测试、production生产环境
3 years ago
let ROOTPATH = ''; //域名
switch (mode) {
case 'devLocal':
3 years ago
ROOTPATH = "//h5.ali251.langye.net"
3 years ago
break;
case 'devOnline':
3 years ago
ROOTPATH = ""
3 years ago
break;
case 'production':
3 years ago
ROOTPATH = "//h5.ali251.langye.net"
3 years ago
break;
default:
throw new Error('未配置环境');
}
3 years ago
export { ROOTPATH }