Browse Source

Use `NODE_ENV` from Express and Socket.IO

pull/81/head
Adam Stachowicz 3 years ago
parent
commit
851ceef3d5
  1. 7
      src/mixins/socket.js

7
src/mixins/socket.js

@ -35,7 +35,8 @@ export default {
window.addEventListener('resize', this.onResize);
let wsHost;
if (localStorage.dev === "dev") {
const env = process.env.NODE_ENV || 'development';
if (env === "development") {
wsHost = ":3001"
} else {
wsHost = ""
@ -45,6 +46,10 @@ export default {
transports: ['websocket']
});
if (!socket.connected) {
console.error("Failed to connect to the backend")
}
socket.on('info', (info) => {
this.info = info;
});

Loading…
Cancel
Save