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

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