-
Can I receive some help / an example on how to introduce actionSanitizer / stateSanitizer for Redux devtools in Rematch, or how I could maybe deactivate it completely for production? |
Beta Was this translation helpful? Give feedback.
Answered by
semoal
Dec 12, 2020
Replies: 2 comments 6 replies
-
I have to check actionSanitizer but you can disable reduxdevtools easily through Rematch init. import { init } from '@rematch/core'
export const store = init({
models,
redux: {
devtoolOptions: {
disabled: false,
},
},
}) |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
semoal
-
Extension crashes while the reducer is working actionSanitizer / stateSanitizer Very helpful at some point 🙏 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have to check actionSanitizer but you can disable reduxdevtools easily through Rematch init.