config.js 568 B

123456789101112131415161718192021222324252627
  1. const node_dev = process.env.H_NODE_ENV;
  2. //运行到浏览器用的
  3. let apiBaseurl='http://wx.hw.hongweisoft.com/forestapi/forest-portal';
  4. let loginUrl='http://wx.hw.hongweisoft.com/forestapi/forest-portal/wechat/h5/authorize?returnUrl=http://172.16.90.25:8080/#/';
  5. //打包用的
  6. if (node_dev) {
  7. apiBaseurl = process.env.H_BASE_URL;
  8. loginUrl = process.env.H_LOGIN_URL
  9. }
  10. // console.log('node_devL',node_dev);
  11. const config = {
  12. apiBaseurl:apiBaseurl,
  13. loginUrl:loginUrl,
  14. //gloab 全局
  15. imgUrl:"",
  16. placeImg:'http://placekitten.com',
  17. }
  18. export {
  19. config
  20. }