Constant.js 209 B

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