Делаю fetch из под
localhost:8080 со следующими параметрами:
{
credentials: "include"
}
Получаю ошибку:
Response to preflight request doesn't pass access control check: The value of the 'Access-Control-Allow-Origin' header in the response must not be the wildcard '*' when the request's credentials mode is 'include'. Origin 'http://localhost:8080' is therefore not allowed access
Хотя на сервере указан заголовок и он же возвращается в Responsе:
Access-Control-Allow-Origin: http://localhost:8080
Какая-то нестыковка получается, Access-Control-Allow-Origin указан, а оно выбивает что он не должен быть "*", хотя таковым и не является. В чем причина?