Benjamin Canac
Benjamin Canac
Thanks @pi0 !
@pi0 I reproduced the same error on a fresh nuxt project, would you have an idea where this could come from?
@kadlinobit I just pushed a fix on the `dev` branch, would you be able to test the latest `@nuxtjs/strapi-edge` to make sure the compatibility with bridge is fixed?
Hey @tobias-srf, The user might be getting logged out when the `GET /users/me` call fails. Otherwise, could you provide a reproduction link?
@tobias-srf Have you tried forcing the cookie path? ```js strapi: { expires: '30d', cookie: { path: '/' } } ```
@kainio You might need to set authorizations for `/users/me` route in your Strapi API.
@tobias-srf Could you share the code you're using to login your users?
Once you've logged in, your getting disconnected upon refresh? At this moment, don't you see a `GET /users/me` route getting called in your Strapi API? Also, have you tried not...
Glad you found the source of your problem, unfortunately I might not be able to help you on this. Feel free to open a pull request on the documentation explaining...
Hi @ceodevforce, Have you tried this cookie options? ``` cookie: { path: '/' } ```