You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
then login using password. Refresh the page serveral times within 10 seconds, after 10 seconds -> the session is gone (because the cookie is not set in the server response).
The session cookie is not updated automatically if the data within the session is not updated.
Repro:
in playground nuxt.config.js set runtimeConfig session to:
runtimeConfig: {
session: {
maxAge: 60,
cookie: {
maxAge: 10,
},
},
},
then login using password. Refresh the page serveral times within 10 seconds, after 10 seconds -> the session is gone (because the cookie is not set in the server response).
PR #255 solves this issue
The text was updated successfully, but these errors were encountered: