I'm having trouble changing my electron app icon.
mainWindow = new BrowserWindow({
width: 1280,
height: 960,
frame: false,
icon: __dirname + 'img/joe.icns',
webPreferences: {
nodeIntegration: true,
enableRemoteModule: true,
// worldSafeExecuteJavaScript: true,
// contextIsolation: true,
},
I've referenced stackoverflow and medium.com for my attempt.
I have also attemptted
icon: __dirname + 'src/img/joe.icns',
icon: __dirname + './img/joe.icns',
and other similar structure names.