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