Icon not found build Electron App -
i have package.json
{ "name": "app", "version": "1.0.0", "description": "description", "main": "main.js", "scripts": { "start": "electron .", "pack": "build --dir", "dist": "build" }, "author": "author", "license": "cc0-1.0", "devdependencies": { "electron": "^1.4.1" }, "build": { "appid": "myid.1", "mac": { "category": "type.type" }, "win": { "iconurl": "https://www.google.it/images/branding/product/ico/googleg_lodp.ico" } }, "dependencies": { "jquery": "^1.7.4" } }
but when build --win
return me warning:
warning: application icon not set, default electron icon used
and app setup have gift box icon , app launch have default atom icon. how , can set icons app?
Comments
Post a Comment