1234567891011121314151617181920 |
- import Vue from 'vue';
- Vue.config.weixin = {
- // baseUrl: process.env.BASE_URL + 'weixin',
- baseUrl: process.env.NODE_ENV === 'development' ? 'http://free.liaoningdoupo.com' : 'http://jytz.jilinjobs.cn',
- target: process.env.NODE_ENV === 'development' ? 'http://10.16.10.7:8001' : 'http://jytz.jilinjobs.cn/student',
- };
- Vue.config.stomp = {
- brokerURL: 'ws://192.168.1.190:15674/ws',
- // brokerURL: '/ws', // ws://${location.host}/ws
- connectHeaders: {
- host: 'smart',
- login: 'web',
- passcode: 'web123',
- },
- // debug: true,
- reconnectDelay: 5000,
- heartbeatIncoming: 4000,
- heartbeatOutgoing: 4000,
- };
|