PraZ
PraZ
Closing this issue as stale, and it doesnt include a proper reproduction repo. If the issue persists, feel free to reopen with a reproduction repo! :)
Hi, i'm still considering adding per-path persistence config as suggested in #19 , could that be part of it, a per-path like this: ```ts persist: [ { path: 'a' },...
hmm i see what you mean, i kinda saw a good opportunity as both feature ideas are linked to per-path config
ok i may have an exampls that could help you? ```ts persist: { serializer: { deserialize: JSON.parse, serialize: (state) => { const { a, b } = state const toStore...
You can always define an external function that returns the state to store from the current state, and have concerns separated this way.
Closing this as it has a workaround, and probably won't see an implementation in the current situation. Feel free to propose new stuff :)
Mmmh I don't really understand what you are trying to achieve, can you be more explicit and give detailed examples ? thanks :)
Dont worry about english, as long as we understand what you need and can work it out 💪 I just don't understand the "I only want the data at the...
so you want ```totalResData: { // ...my data }``` to be in the storage (localstorage for instance) instand of the whole tree right ?
ye i think i get the idea, i'll see if i can work on a recipe to make it work with current plugin, or if we can implement something to...