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 = ''; //域名
|
|
|
|
|
|
let base = "https://agent.xfgshop.com"
|
|
|
|
|
|
switch (mode) {
|
|
|
|
|
|
// https://agenttest.xfgshop.com
|
|
|
|
|
|
// https://agent.xfgshop.com
|
|
|
|
|
|
case 'devLocal':
|
|
|
|
|
|
ROOTPATH = base
|
|
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
case 'devOnline':
|
|
|
|
|
|
ROOTPATH = base
|
|
|
|
|
|
break;
|
|
|
|
|
|
case 'production':
|
|
|
|
|
|
ROOTPATH = base
|
|
|
|
|
|
break;
|
|
|
|
|
|
default:
|
|
|
|
|
|
throw new Error('未配置环境');
|
|
|
|
|
|
console.log(`未配置环境`);
|
|
|
|
|
|
}
|
|
|
|
|
|
export { ROOTPATH }
|