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
in my app the main.js of my electron application is in the toplevel application source folder (in /src, below the folder where the package.json for electron-builder is):
"main": "main.js"
The packager considers to look it up in
../dist/"appname"-win32-x64/resources
Where it really is after packaging (asar is false):
../dist/"appname"-win32-x64/resources/app
if I change the entry in the package.json to
"main": "app/main.js"
packaging is working, but that's not the relative location of the file.
The text was updated successfully, but these errors were encountered:
in my app the main.js of my electron application is in the toplevel application source folder (in /src, below the folder where the package.json for electron-builder is):
The packager considers to look it up in
Where it really is after packaging (asar is false):
if I change the entry in the package.json to
packaging is working, but that's not the relative location of the file.
The text was updated successfully, but these errors were encountered: