config.js 328 B

123456789101112
  1. let APP_SERVER_URL = ""
  2. if(process.env.NODE_ENV === 'development'){
  3. // 开发环境 http://47.97.69.114:8088/#/login
  4. //APP_SERVER_URL = 'http://47.97.69.114:8088/panhuangly/'
  5. APP_SERVER_URL = 'http://192.168.139.28:8071'
  6. }else{
  7. // 生产环境
  8. APP_SERVER_URL = '/yd_qycpfb'
  9. }
  10. export default APP_SERVER_URL