290144e9
易尊强
第一次
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* process.env.NODE_ENV设置生产环境模式 */
/*JAVA app.java.nccsoft.com NET dotnet.nccsoft.com*/
// const baseURL = "http://localhost:2011" // 接口前缀
const baseURL = "http://deyanggaoxin.fengshiyun.com"
// const baseURL = "http://disk.banustar.com" // 接口前缀
const define = {
baseURL: baseURL,
// webSocketUrl: "ws://localhost:8061/api/message/websocket",
// webSocketUrl: "ws://disk.banustar.com/api/message/websocket",
// webSocketUrl: "ws://localhost:2011/api/message/websocket",
webSocketUrl: "ws://deyanggaoxin.fengshiyun.com/api/message/websocket",
comUploadUrl: baseURL + '/api/file/Uploader/',
timeout: process.env.NODE_ENV === 'production' ? 60000 : 10000,
version: "V3.2.4"
}
export default define
|