How do you set the app icon for your Electron app?
I am trying BrowserWindow({icon:\'path/to/image.png\'}); but it does not work.
BrowserWindow({icon:\'path/to/image.png\'});
Do I need to p
Below is the solution that i have :
mainWindow = new BrowserWindow({width: 800, height: 600,icon: __dirname + '/Bluetooth.ico'});