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.
21 lines
717 B
21 lines
717 B
let baseUrl = "",
|
|
baseImgUrl = "",
|
|
serverUrl = "";
|
|
if (process.env.NODE_ENV == "development") {
|
|
// 开发环境 47.111.93.24:9012,192.168.0.109:6547, 开发地址:http://47.114.46.83:30001/API/ https://cstest.51gugua.com/
|
|
//http://yltest.51gugua.com https://cstest.51gugua.com/
|
|
|
|
baseUrl = "https://cstest.51gugua.com/API/";
|
|
baseImgUrl = "https://cstest.51gugua.com/";
|
|
serverUrl = "https://cstest.51gugua.com/";
|
|
} else {
|
|
// 生产环境
|
|
baseUrl = "https://cstest.51gugua.com/API/";
|
|
baseImgUrl = "https://cstest.51gugua.com";
|
|
serverUrl = "https://cstest.51gugua.com/";
|
|
}
|
|
export default {
|
|
baseUrl: baseUrl,
|
|
baseImgUrl: baseImgUrl,
|
|
serverUrl: serverUrl
|
|
}
|
|
|