const env = 'test';
const configs = {
    dev: {
        apiBaseUrl: 'https://warehouse.szjixun.cn/oa_backend',
        h5Url: 'http://192.168.88.49:8080/#/'
    },
    test: {
        apiBaseUrl: 'https://warehouse.szjixun.cn/oa_backend',
        h5Url: 'http://114.218.158.24:8042/#/'
    },
    prod: {
        apiBaseUrl: 'https://oa-a.szjixun.cn/#/',
        h5Url: 'https://oa-a.szjixun.cn/#/'
    },
}
const config = configs[env];
export default config;