i have a react/redux app and i'm using redux-persist to store state values. I have a big amount of data and i want to know the size limit of redux-persist, i know that redux can store an illimited data but with redux persiste i have no idea. Any help please ? This is what i found on the internet :
A Redux store doesn't have a limit on the amount of data stored, so you can pretty much use it to store almost anything, including bulky JSON data, data in table form, etc.
Thank you