i use universall-cookies to store my cookies,
in my backend i generate an JWT Token which is httpOnly, i do receive it in my frontend, but now, comes my problem,
i do get the data "withCredentials", but when ever i want to set the cookie as:
cookies.set(Constants.AUTH_COOKIE, response.data.access_token,
{ httpOnly: true });
i wont bet set, if i remove the "httpOnly" it does get set...,
so i cant find the problem here, i receive an httpOnly cookie from my backend, but i cant set it under Cookies, would appreciate any help!