Hook Errors with Redux React inside of Electron
- Andrew Silluron
- Jul 8, 2020
- 1 min read
When using electron and specifically, electron-webpack, it's common to have a split-brain issue occur when loading 'react' and 'redux-react'.
The simple fix is to edit your whitelist config
"electronWebpack": {
"whiteListedModules": [,
"react-redux"
]
},
Comments