feat: added rotation config

This commit is contained in:
2021-01-13 21:19:03 +01:00
parent 9419544511
commit 7d46950add
4 changed files with 28 additions and 3 deletions

View File

@@ -6,9 +6,9 @@ import router from './router';
Vue.use(new VueSocketIO({
debug: false,
connection: SocketIO(`${window.location.protocol}//${window.location.host}`),
connection: SocketIO(`${window.location.protocol}//${window.location.host}`, { transports: ['websocket'] }),
options: {
transport: 'websocket',
transports: ['websocket'],
},
}));