You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
382 B

let BASE_URL = ''
if (process.env.NODE_ENV == 'development') {
BASE_URL = 'https://h5devops.nhet.cloud/jeecg-boot' // 开发环境
} else {
BASE_URL = 'https://h5devops.nhet.cloud/jeecg-boot' // 生产环境
}
let staticDomainURL = BASE_URL+ '/sys/common/static';
const configService = {
apiUrl: BASE_URL,
staticDomainURL: staticDomainURL
};
export default configService