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
26 lines
348 B
JSON
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"
|
|
]
|
|
}
|
|
}
|