We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b0b47a commit 50c6a65Copy full SHA for 50c6a65
icons.png
3.37 KB
scripts/index.js
@@ -1,4 +1,5 @@
1
const { app, BrowserWindow, Menu } = require('electron');
2
+const path = require('path');
3
4
// Application configuration
5
const appConfig = {
@@ -22,6 +23,7 @@ async function createMainWindow() {
22
23
contextIsolation: false,
24
userAgent: appConfig.userAgent,
25
},
26
+ icon: path.join(__dirname, '../icons.png'), // Path to the icon file
27
});
28
29
try {
0 commit comments