nuxt.jsmiddlewarejs-cookie

How I can get cookie value from 'js-cookie' in nuxt.js middleware?


This is my code :

export default function ({ store, redirect }) {
  // If the user is not authenticated
  if (!store.state.auth.auth) {
    return redirect('/login')
  }
}

But my main problem is after refresh page my store is empty for that I want to use my cookie in middleware.


Solution

  • You can use cookie-universal-nuxt to set, get and remove cookies in both client and server side nuxt apps https://www.npmjs.com/package/cookie-universal-nuxt