Houjie
2025-06-03 2fda34643bc22e25f6c569415da5f955c81536bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
let BASE_URL = '/jeecg-boot'
if (process.env.NODE_ENV == 'development') {
    
    BASE_URL = '/jeecg-boot' // 开发环境
} else {
    BASE_URL = '/jeecg-boot' // 生产环境
}
let staticDomainURL ='/sys/common/static';
let staticURL ='https://192.168.100.105:9999/jeecg-boot/sys/common/static';
const configService = {
    apiUrl: BASE_URL,
    staticDomainURL: staticDomainURL,
    staticURL:staticURL
};
 
export default configService