12345678910111213141516171819202122 |
- let baseUrl = '';
- const VUE_APP_REMOTE_HOST = process.env.VUE_APP_REMOTE_HOST;
- // #ifndef H5
- // #endif
- baseUrl = `https://${VUE_APP_REMOTE_HOST}`;
- // #ifdef H5
- if(location.host === 'yzl-h5-dev.datounet.com'){
- baseUrl = `https://yzl-api-dev-go.datounet.com`;
- }
- // #endif
- const config = {
- baseUrl,
- dataType: 'text',
- };
- export default config;
|