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.
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