I am developing a Next.js app where I use Redux Toolkit. At the moment I am using redux in a dumb way, so that I almost don't need it at all: every time the app reloads I lose all I had in my redux store and I reinitialize the store with data I take from either the local storage or a database.
I spent days reading docs, questions, GitHub issues and examples and I really don't get how I could possibly reuse the redux store, rather than losing it and having to reinitialize it.
I came to know I could use some tool like redux-wrapper, but I wonder if these tools really reuse the store or they just automatize what I am already doing.
At the end my question boils down to whether, while in the process of reloading a page, there is a time frame in which I can still access the old store and yet have the possibility to somehow dispatch towards the new one.