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.

19 lines
406 B

1 year ago
const mode = process.env.NODE_ENV;
//const mode = 'development';
4 years ago
let ROOTPATH = ''; //域名
switch (mode) {
3 years ago
case 'development':
3 years ago
ROOTPATH = "http://sstt.ali251.langye.net"
//ROOTPATH = "https://sstt.115.langye.net"
4 years ago
break;
case 'production':
3 years ago
ROOTPATH = "https://sstt.115.langye.net"
4 years ago
break;
default:
throw new Error('未配置环境');
console.log(`未配置环境`);
}
export {
ROOTPATH
}