create-nw-react-app icon indicating copy to clipboard operation
create-nw-react-app copied to clipboard

Not able to change taskbar icon in windows

Open koushikreddyu opened this issue 6 years ago • 7 comments

I have created React application using nw-react-scripts. I am trying to add icon for taskbar, but icon doesn't change. Always I see default icon. I tried by clearing appData as well. I have used below method in my package.json to add icon.

"window": {
 "icon":"src/image/logo.png"
}

image

koushikreddyu avatar Dec 06 '18 08:12 koushikreddyu

See nw-bulder Options. https://github.com/nwjs-community/nw-builder

Your package.json

{
  "nwBuilder": {
    "//": "https://github.com/nwjs-community/nw-builder",
+   "winIco": "src/image/logo.png"
  }
}

naviapis avatar Dec 08 '18 13:12 naviapis

Thanks for the answer. i have tried this also. Even this didn't work for me.

koushikreddyu avatar Dec 10 '18 04:12 koushikreddyu

This article is helpful. https://github.com/nwjs/nw.js/wiki/Icons Resource Hacker app may be necessary.

naviapis avatar Dec 29 '18 16:12 naviapis

Thanks for the answer. i have tried this also. Even this didn't work for me.

icon file copy to build file.

keeptwoweeks avatar Feb 11 '19 14:02 keeptwoweeks

Thanks for the answer. i have tried this also. Even this didn't work for me.

icon file copy to build file.

could you please elobrate what is build file? Below is my configuration in package.json file and my folder structure is below. image

-build -cache -node_modules -public -src --images -package.json

please let me know what am doing wrong here

koushikreddyu avatar Feb 25 '19 04:02 koushikreddyu

fyi, if i open developer tools, that icon is updated. but my main window icon is not. please find below image has marked main window and devtool window image

koushikreddyu avatar Feb 25 '19 04:02 koushikreddyu

But what about when you need to access other properties as demonstrated in NW.js Documentation, for example:

{     ...     "window": {         "toolbar": false,     }     ... }

ismael1361 avatar Feb 12 '22 19:02 ismael1361