Markus Svensson
Markus Svensson
I had the same problem, I think. You are probably using machineIdSync in the Electron renderer process? child_process is a node module and can only be accessed from the main...
Faced with the same problem I did some research. With inspiration from https://stackoverflow.com/questions/54459442/module-not-found-error-cant-resolve-child-process-how-to-fix I solved it for the rendering process by adding following config for webpack.config.js. After this change I...
I faced the same problem and made this workaround (until it is fixed by this pull request https://github.com/electron/windows-installer/pull/378): 1. Run > npm install --ignore-scripts to install 5.0.0 without running the...