N.Achyuth Reddy
Upload 683 files
9705b6c
raw
history blame
298 Bytes
function setHeaders(req, res, next) {
res.writeHead(200, {
Connection: 'keep-alive',
'Content-Type': 'text/event-stream',
'Cache-Control': 'no-cache, no-transform',
'Access-Control-Allow-Origin': '*',
'X-Accel-Buffering': 'no',
});
next();
}
module.exports = setHeaders;