Houjie
2025-04-18 ae3855638dba0c927236c1a1b1a85d5b048c40e2
common/service/config.service.js
@@ -1,11 +1,11 @@
let BASE_URL = 'https://192.168.1.118:9988/jeecg-boot'
let BASE_URL = '/jeecg-boot'
if (process.env.NODE_ENV == 'development') {
   
    BASE_URL = 'https://192.168.1.118:9988/jeecg-boot' // 开发环境
    BASE_URL = '/jeecg-boot' // 开发环境
} else {
   BASE_URL = 'https://192.168.1.118:9988/jeecg-boot' // 生产环境
   BASE_URL = '/jeecg-boot' // 生产环境
}
let staticDomainURL = BASE_URL+ '/sys/common/static';