I've deployed my app on Azure App Service and I know that Azure provides ARRAffinitySameSite cookie, but also I have another cookie for auth purposes, let's call it 'AUTH_COOKIE'.
Locally, I pass AUTH_COOKIE and I see them in request header (because I don't have any other cookies), but on my published app, I have two cookies: AUTH_COOKIE and ARRAffinitySameSite and my request doesn't want set to AUTH_COOKIE instead of ARRAffinitySameSite. How I can fix it?
return axios.get(`someUrl`, { params: { someParam}, withCredentials: true, headers: { 'Cookie': document.cookie } });