mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-27 05:29:59 +00:00
11 lines
564 B
JavaScript
11 lines
564 B
JavaScript
export default function corsMiddleware (req, res, next) {
|
|
res.set({
|
|
'Access-Control-Allow-Origin': '*',
|
|
'Access-Control-Allow-Methods': 'OPTIONS,GET,POST,PUT,HEAD,DELETE',
|
|
'Access-Control-Allow-Headers': 'Authorization,Content-Type,Accept,Content-Encoding,X-Requested-With,x-api-user,x-api-key,x-client',
|
|
// Expose rate limit headers to CORS requests
|
|
'Access-Control-Expose-Headers': 'X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset,Retry-After',
|
|
});
|
|
if (req.method === 'OPTIONS') return res.sendStatus(200);
|
|
return next();
|
|
}
|