tobias-srf

Results 9 comments of tobias-srf

Hi @benjamincanac I currently don't have any reproduction link, just running localhost. However, I am also using nuxt-i18n and I have noticed that it creates more than one cookie for...

> > > @tobias-srf Have you tried forcing the cookie path? > > ```js > strapi: { > expires: '30d', > cookie: { > path: '/' > } > }...

@benjamincanac I am doing SSR and following code will tell me that I am logged out on a page refresh, so the issue still prevails! ``` export const actions =...

Your wrote: _The user might be getting logged out when the GET /users/me call fails._ @benjamincanac how can I debug that? I see no such request being sent to any...

@benjamincanac nothing spectacular here ... ``` {{ error }} Login Login export default { data() { return { identifier: '', password: '', error: '', } }, methods: { async loginUser(e)...

I have removed the overwriting of `strapi.key` and logged in twice. my `node console` shows a `POST /auth/local` but not more ... ![grafik](https://user-images.githubusercontent.com/78744870/117804944-af216680-b258-11eb-9996-408294ba2487.png)

I log in and get a perfect redirect to my profile page (as in login code above). Username is shown etc ... if I browser refresh the profile page (F5...

@benjamincanac I think I found the issue. I am using docker and run nuxt and strapi on the same instance. I have a port forwarding set aside for either application....

I guess the issue is that the strapi module does not respect the `strapi { url: 0.0.0.0: } ` settings all the way and gets bogged down when doing authentication...