index.js 409 B

1234567891011121314
  1. let BASE_URL = ''
  2. if (process.env.NODE_ENV === 'development') {
  3. BASE_URL = 'https://xt.sharingschool.com/sz'
  4. } else {
  5. BASE_URL = 'https://xt.sharingschool.com/sz' //测试环境服务器地址
  6. // BASE_URL = 'https://t.sharingschool.com/sz'; //正式环境地址
  7. // BASE_URL = 'https://sx.sharingschool.com' //实习环境地址
  8. }
  9. const TIME_OUT = 10000
  10. export {
  11. BASE_URL,
  12. TIME_OUT,
  13. }