1234567891011121314151617181920 |
- import Vue from 'vue';
- Vue.config.weixin = {
- // baseUrl: process.env.BASE_URL + 'weixin',
- baseUrl: 'http://10.16.8.209:9005',
- };
- Vue.config.stomp = {
- // brokerURL: 'ws://http://free.liaoningdoupo.com/ws',
- brokerURL: '/ws', // ws://${location.host}/ws
- connectHeaders: {
- host: 'visit',
- login: 'visit', //visit
- passcode: 'visit', //visit123
- },
- // debug: true,
- reconnectDelay: 5000,
- heartbeatIncoming: 4000,
- heartbeatOutgoing: 4000,
- };
|