feat: include credentials if needed
This commit is contained in:
@@ -102,6 +102,7 @@ app.use((req, res, next) => {
|
|||||||
res.header('Access-Control-Allow-Origin', allowedOrigin);
|
res.header('Access-Control-Allow-Origin', allowedOrigin);
|
||||||
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS');
|
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS');
|
||||||
res.header('Access-Control-Allow-Headers', 'Content-Type, Authorization');
|
res.header('Access-Control-Allow-Headers', 'Content-Type, Authorization');
|
||||||
|
res.header('Access-Control-Allow-Credentials', 'true');
|
||||||
if (req.method === 'OPTIONS') {
|
if (req.method === 'OPTIONS') {
|
||||||
return res.sendStatus(200);
|
return res.sendStatus(200);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user