Paul Cross
Paul Cross
Hi, as of right now this is unfortunately not possible. Will look into it in the future.
Hi, only option to refetch user right now is `window.location.reload()`.
yes, you could do that too, but there is a slight chance that the data would deviate from the source. I so would still recommend refreshing the app after changing...
Hi, how do you call the login method? There should be no need to fetch user manually.
Hey there! Currently, I'm in the process of a big rewrite that will automatically update the authentication status after a user logs in or logs out. This means there will...
Hi @bacink, have you put your frontend and backend url into the `SESSION_DOMAINS` and `SANCTUM_STATEFUL_DOMAINS` in the laravel `.env` file? it should look something like this: ``` SESSION_DOMAINS=localhost,localhost:8000,localhost:3000,127.0.0.1,127.0.0.1:8000,::1 SANCTUM_STATEFUL_DOMAINS=localhost,localhost:8000,localhost:3000,127.0.0.1,127.0.0.1:8000,::1 ```...
Hi @cvalues, as of right now this is unfortunately not possible. All guarded pages must have `auth` middleware. Tho, you should be able to use [nuxt nested pages](https://nuxt.com/docs/guide/directory-structure/pages#nested-routes). I'm in...
Hello everyone, you should be able to send multipart form data just like in `ofetch` that this module uses under the hood. I found one issue that mentions sending `formData`...
Hi, I will look at this in few days. Thanks for your patiance.
Hi, right now I'm working on major rewrite that will include better error handling alongside better type support. Stay tuned 