Cookie in JUCE Backend

Hi there,

I’m having some problem in storing cookie using juce::backend. Inside my web app, I save my cookie by document.cookie = `${SESSION_COOKIE_NAME}=${data.data}; path=/; expires=${expires}; SameSite=None; Secure`;

It works when I call goToURL (localDevServerAddress); but it doesn’t work for goToURL (SinglePageBrowser::getResourceProviderRoot()); . Is cookie not available in JUCE backend?