такая ситуация, не могу обойти cors, фронтенд на embe.js бэкенд node.js, на бэкенд поставил шо все могут доступатися но все равно не проходит

Node.js
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
app.use(function (req, res, next) {
res.header("Access-Control-Allow-Origin", req.headers.origin);
res.header('Access-Control-Allow-Credentials', 'true');
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
next();
});
Ajax
$.ajax({
type: "POST",
url: "https://polar-headland-32309.herokuapp.com/get-staff",
async:false,
dataType: 'json',
contentType: 'application/json',
processData: false,
xhrFields: {
withCredentials: true
},
success:function(data,st,jq) {
ret=data;
console.log(ret);
return ;
}
});