mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
13 lines
298 B
JavaScript
13 lines
298 B
JavaScript
|
|
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;
|