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"
]
},
Commentaires