Last active
September 21, 2022 12:03
-
-
Save cp-sumi-k/99aa9960d96170fad2f612087984891f to your computer and use it in GitHub Desktop.
https://blog.canopas.com/electron-a-complete-guide-for-building-windows-executable-a2cca8b52e00 - config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
pluginOptions: { | |
electronBuilder: { | |
builderOptions: { | |
productName: "Your product name", | |
directories: { | |
buildResources: "resources", | |
}, | |
win: { | |
icon: "resources/appx/storeLogo.png", | |
target: ["nsis", "appx"], | |
}, | |
appx: { | |
identityName: "Your app identity name", | |
publisher: "Your app publisher identity", | |
publisherDisplayName: "Your app publisher name", | |
}, | |
}, | |
}, | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment