-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforge.config.js
More file actions
49 lines (49 loc) · 1.1 KB
/
forge.config.js
File metadata and controls
49 lines (49 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
module.exports = {
packagerConfig: {
"icon": "./chatgpt",
"name": "chatGPT",
"executableName": "chatGPT"
},
rebuildConfig: {},
makers: [
{
name: '@electron-forge/maker-squirrel',
config: {
authors: 'Bit-Scripts Team',
name: 'chatGPT',
loadingGif: '.\\chatgptfond.png',
setupIcon: '.\\chatgpt.ico',
icon: '.\\chatgpt.ico',
iconUrl: 'https://cdn.discordapp.com/attachments/1082898952191483934/1083117919757680691/chatgpt.ico'
},
},
{
name: '@electron-forge/maker-dmg',
platforms: ['darwin'],
config: {
title: 'chatGPT',
background: './installBackground.png',
format: 'ULFO',
icon: 'chatgpt.icns'
}
},
{
name: '@electron-forge/maker-deb',
config: {
options: {
maintainer: 'Bit-Scripts Team',
icon: 'chatgpt.png'
}
},
},
{
name: '@electron-forge/maker-rpm',
config: {
options: {
maintainer: 'Bit-Scripts Team',
icon: 'chatgpt.png'
}
},
},
],
};