Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error localStorage is not defined on refersh (Nuxt Js , Parse server)

enter image description here

Getting the above error on page refresh, but i am not using localStorage in my Code.

like image 800
Naveen Avatar asked Oct 18 '25 05:10

Naveen


1 Answers

Perform operations only possible in the browser within the following if statement:

if (process.client) {
localStorage...
}

See: https://nuxtjs.org/api/context/

another option is to only call it in the beforeMount or mounted functions, since they always happen on the client side.

like image 157
Timar Ivo Batis Avatar answered Oct 21 '25 19:10

Timar Ivo Batis