Houjie
16 小时以前 964faa1077a89713910063c39ebe08fac4e4c56e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
let BASE_URL = ''
if (process.env.NODE_ENV == 'development') {
    
    BASE_URL = '/jeecg-boot' // 开发环境
} else {
    BASE_URL = '/jeecg-boot' // 生产环境
}
let staticDomainURL ='/sys/common/static';
// let staticURL ='http://125.76.225.53:8086/jeecg-boot/sys/common/static/';
let staticURL ='https://fastwoke.cn:8087/jeecg-boot/sys/common/static/';
 
const configService = {
    apiUrl: BASE_URL,
    staticDomainURL: staticDomainURL,
    staticURL:staticURL
};
 
export default configService