blob: daec1a869d96d778aa7c4171b3e8a7793abc9d65 [file] [log] [blame]
const httpProxy = require('http-proxy');
const proxy = httpProxy.createProxyServer({
target: 'http://xos.dev:9101'
});
proxy.on('error', function(error, req, res) {
res.writeHead(500, {
'Content-Type': 'text/plain'
});
console.error('[Proxy]', error);
});
module.exports = proxy;