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