While enabling sessions in Express with 'saveUninitialized' as true, I figured that express saves one more irrelevant session other than connect.sid related session and with each refresh it generates one more session.
In this problem when page first loads I get two session. One with my cookie, other with asyncdata axios. So with each refresh axios in asyncdata generates a new session while my original cookie related session just touched.
Does asyncData works likes this or this issue based on axios ?