We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add icon in electron-builder.json5, it will catch a error cannot find the icon. part of my file: ... directories: { output: 'release/${version}', }, files: ['dist-electron', 'dist'], extraFiles: [ { from: 'vendor', to: 'vendor', filter: ['!**/.git', '!**/.github'], }, ], "win": { "target": [ { "target": "nsis", "arch": [ "x64" ] } ], "artifactName": "${productName}-Windows-${version}-Setup.${ext}", "icon": "public/logo.png" },' ....
... directories: { output: 'release/${version}', }, files: ['dist-electron', 'dist'], extraFiles: [ { from: 'vendor', to: 'vendor', filter: ['!**/.git', '!**/.github'], }, ], "win": { "target": [ { "target": "nsis", "arch": [ "x64" ] } ], "artifactName": "${productName}-Windows-${version}-Setup.${ext}", "icon": "public/logo.png" },' ....
there is the error: Error while loading icon from "H:\xxxxxx\release\1.0.0\.icon-ico\icon.ico": can't open file.
Error while loading icon from "H:\xxxxxx\release\1.0.0\.icon-ico\icon.ico": can't open file
It seems that the .icon-ico only generate in "${version}" directory but not copy to the "1.0.0".
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add icon in electron-builder.json5, it will catch a error cannot find the icon. part of my file:
... directories: { output: 'release/${version}', }, files: ['dist-electron', 'dist'], extraFiles: [ { from: 'vendor', to: 'vendor', filter: ['!**/.git', '!**/.github'], }, ], "win": { "target": [ { "target": "nsis", "arch": [ "x64" ] } ], "artifactName": "${productName}-Windows-${version}-Setup.${ext}", "icon": "public/logo.png" },' ....
there is the error:
Error while loading icon from "H:\xxxxxx\release\1.0.0\.icon-ico\icon.ico": can't open file
.It seems that the .icon-ico only generate in "${version}" directory but not copy to the "1.0.0".
The text was updated successfully, but these errors were encountered: