Constant.js 439 B

1234567891011121314
  1. // URL
  2. export let BASEURL = '';
  3. // if(process.env.NODE_ENV === 'development'){ // 开发环境
  4. // BASEURL = 'https://test.ohplay.radio1964.net/ohplay/Web/HttpToTcp';
  5. // }else{ // 生产
  6. // BASEURL = 'https://ohplay.radio1964.net/ohplay/Web/HttpToTcp';
  7. // };
  8. if(process.env.NODE_ENV === 'development'){ // 开发环境
  9. BASEURL = 'https://test.ohplay.radio1964.net/';
  10. }else{ // 生产
  11. BASEURL = 'https://ohplay.radio1964.net/';
  12. };