diff --git a/client/server.js b/client/server.js index 62fb9d7c8..009b4d544 100644 --- a/client/server.js +++ b/client/server.js @@ -107,6 +107,7 @@ var proxyRules = new HttpProxyRules({ }); var pathProxy = httpProxy.createProxy({ws: true}); +pathProxy.on('error', function(err) { console.error('path proxy error', err); }); var pathProxyPort = port + 1; const proxyPathServer = http.createServer(function(req, res) { var target = proxyRules.match(req);