You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oa-base/config/index.js

19 lines
454 B
JavaScript

5 months ago
const env = 'dev';
const configs = {
dev: {
apiBaseUrl: 'https://warehouse.szjixun.cn/oa_backend',
h5Url:'http://192.168.88.35:8080/'
},
test: {
apiBaseUrl: 'https://warehouse.szjixun.cn/oa_backend',
h5Url:'http://172.16.100.93:8041/#/'
},
prod: {
apiBaseUrl: 'https://oa.szjixun.cn/api',
h5Url:'https://oa.szjixun.cn/#/'
},
};
const config = configs[env];
export default config;