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.

20 lines
456 B

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