The favicon.ico is too small (needs 256x256 minimum for Windows installer).
Copy your logo.png or logonew.png to the build folder:
copy "d:\FileShot.io\test\logo.png" "d:\FileShot.io\desktop-app\build\icon.png"Then update package.json to use PNG:
"win": {
"icon": "build/icon.png"
}- Go to https://icoconvert.com/
- Upload your logo.png
- Select 256x256 size
- Download the .ico file
- Replace build/icon.ico
Remove icon from package.json temporarily:
"win": {
"target": ["nsis", "portable"]
// Remove: "icon": "build/icon.ico"
}This will use Electron's default icon for now.