2024-06-05 08:17:38 +00:00
|
|
|
const env = 'dev';
|
2024-04-12 08:30:22 +00:00
|
|
|
const configs = {
|
|
|
|
dev: {
|
|
|
|
apiBaseUrl: 'https://warehouse.szjixun.cn/oa_backend',
|
2024-06-05 08:17:38 +00:00
|
|
|
h5Url: 'http://192.168.88.49:8080/#/'
|
2024-04-12 08:30:22 +00:00
|
|
|
},
|
|
|
|
test: {
|
|
|
|
apiBaseUrl: 'https://warehouse.szjixun.cn/oa_backend',
|
2024-06-03 09:11:28 +00:00
|
|
|
h5Url: 'http://114.218.158.24:9051/#/'
|
2024-04-12 08:30:22 +00:00
|
|
|
},
|
|
|
|
prod: {
|
2024-06-05 05:53:08 +00:00
|
|
|
apiBaseUrl: 'https://oa-b.szjixun.cn/#/',
|
|
|
|
h5Url: 'https://oa-b.szjixun.cn/#/'
|
2024-04-12 08:30:22 +00:00
|
|
|
},
|
2024-06-03 09:11:28 +00:00
|
|
|
}
|
2024-04-12 08:30:22 +00:00
|
|
|
const config = configs[env];
|
|
|
|
export default config;
|