I'm building an app with ReactJS and with the latest change to Chrome we're unable to get the cookie back as it's provided by a Central Authentication Service. Granted, in prod it'll have the same domain as the JS app, but for now it is breaking the app locally. I know about SameSite=None; Secure
but that still needs the third party app (the React app) to access using a secure connection. To me going through those changes locally is overkill.
Is there no other way?
Edit: I have also tried mapping to a domain equal to the auth server in the hosts file but it didn't work.