Spaces:
Sleeping
Sleeping
File size: 378 Bytes
5e9feb1 | 1 2 3 4 5 6 7 8 9 10 11 |
export function policy(req:any, res:any, next:any) {
if (req.header('Origin')) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "*");
res.header("Access-Control-Allow-Headers", "Content-Type");
res.header("Access-Control-Allow-Methods", "PUT, GET, POST, DELETE, OPTIONS");
}
next();
}
|