Files
AngularTicTacToe/electron-builder.json
Antoine Stalin ccd060151b fix/ Manage icons for linux binary generation
regarding electron documentation, for linux OS, icons should contain a directory with icons
https://www.electron.build/icons

Images in this directory must contain the size of the icon in their filename
2017-12-11 18:34:33 +01:00

26 lines
348 B
JSON

{
"productName": "angular-electron",
"directories": {
"app": "dist",
"output": "app-builds"
},
"win": {
"icon": "dist/favicon",
"target": [
"portable"
]
},
"mac": {
"icon": "dist/favicon",
"target": [
"dmg"
]
},
"linux": {
"icon": "dist",
"target": [
"AppImage"
]
}
}