0👍
Asked this question on r/laravel and it is solved.
It looks like Firefox isn’t sending the session cookie, wich will
cause all the problems you described as a result. Use the browser
developer tools to inspect requests to confirm this. Then, try to
configure Axios to always send cookies, something like
withCredentials: true.
So I added "axios.defaults.withCredentials = true;". And it works! Will keep this here, so others might learn from my mistakes
- [Vuejs]-Unit test with jest involving a class instance declared within a vue method
- [Vuejs]-How to disable Single sign-on (SSO) with MSAL.js?
Source:stackexchange.com