setting.js 466 B

1234567891011121314151617181920
  1. import Vue from 'vue';
  2. Vue.config.weixin = {
  3. // baseUrl: process.env.BASE_URL + 'weixin',
  4. baseUrl: 'http://10.16.8.209:9005',
  5. };
  6. Vue.config.stomp = {
  7. // brokerURL: 'ws://http://free.liaoningdoupo.com/ws',
  8. brokerURL: '/ws', // ws://${location.host}/ws
  9. connectHeaders: {
  10. host: 'visit',
  11. login: 'visit', //visit
  12. passcode: 'visit', //visit123
  13. },
  14. // debug: true,
  15. reconnectDelay: 5000,
  16. heartbeatIncoming: 4000,
  17. heartbeatOutgoing: 4000,
  18. };