Is the Pinia store being cached by default?
My users are sometimes experiencing odd behavior after I've pushed to my production environment. I couldn't reproduce their issues but it only happens when I change the Pinia store schema.
So I assume Nuxt 3 + Pinia cache the state values somehow. To better understand this, I'm wondering:
1. If this is actually the case by default?
2. If this is the case, where is this data saved? Local storage? Cookies?
I'm thinking about saving a hash value in my store and then comparing it after making a deployment. If it doesn't match, I want to reset the store/clear the cache. But in order to do so, I need to better understand if/how Pinia caches...
Thank you very much
So I assume Nuxt 3 + Pinia cache the state values somehow. To better understand this, I'm wondering:
1. If this is actually the case by default?
2. If this is the case, where is this data saved? Local storage? Cookies?
I'm thinking about saving a hash value in my store and then comparing it after making a deployment. If it doesn't match, I want to reset the store/clear the cache. But in order to do so, I need to better understand if/how Pinia caches...
Thank you very much
