Use NODE_ENV from Express and Socket.IO
				
					
				
			This commit is contained in:
		
							parent
							
								
									efd7608ba2
								
							
						
					
					
						commit
						851ceef3d5
					
				
					 1 changed files with 6 additions and 1 deletions
				
			
		|  | @ -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…
	
		Reference in a new issue