-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathforge.config.js
More file actions
37 lines (37 loc) · 995 Bytes
/
forge.config.js
File metadata and controls
37 lines (37 loc) · 995 Bytes
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
module.exports = {
packagerConfig: {
icon: './src/public/icon'
},
rebuildConfig: {},
"makers": [{
"name": "@electron-forge/maker-squirrel",
"authors": "juaneth",
"config": {
"name": "bot.dev",
"icon": "./src/public/icon.ico",
"loadingGif": "./src/public/installing.gif"
}
},
{
"name": "@electron-forge/maker-dmg",
"config": {
"platforms": [
"darwin"
],
"overwrite": true,
"name": "bot.dev",
"AdditionalDMGOptions": {
"window": {
"size": {
"height": 700,
"width": 500
}
}
}
}
},
{
"name": "@electron-forge/maker-zip"
}
],
};