Use NODE_ENV from Express and Socket.IO

This commit is contained in:
Adam Stachowicz 2021-07-18 20:21:17 +02:00
parent efd7608ba2
commit 851ceef3d5

View File

@ -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;
});