You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* webpack plugin: properly references `index.js`
When building an executable using `electron-force make`, setting `publicPath` as `/` leads (for example) to `index.js` being referenced as `file:///main_window/index.js`, which cannot be found. (The URL points to `/main_window/index.js`, which is incorect. It should be `../main_window/index.js`.)
When it is unset, the build runs properly and provides the correct URL. (This still works with `electron-forge start` as well.)
* publicPath is needed for hot module reloading
As noted in #713
* correct syntax
Without
in renderer config hot module reloading will respond with a 404 error e.g.
Should this be added to the base config?
NOTE: this is only for dev '
start
' builds and will actually break production buildsThe text was updated successfully, but these errors were encountered: