-
Notifications
You must be signed in to change notification settings - Fork 1
/
forge.config.js
116 lines (115 loc) · 4.06 KB
/
forge.config.js
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
const path = require("path");
module.exports = {
packagerConfig: {
extraResource: [
"./resources/server.properties",
"./resources/fabric-installer.jar",
"./img/icons/icon_main.png",
],
icon: "./img/icons/icon_main",
},
makers: [
{
name: "@electron-forge/maker-squirrel",
config: {
name: "multiserver",
setupIcon: "./img/icons/icon_setup.ico",
},
},
{
name: "@electron-forge/maker-zip",
platforms: ["linux"],
},
{
name: "@electron-forge/maker-deb",
config: {
options: {
categories: ["Game", "Utility"],
homepage: "https://github.com/dheerajpv/multiserver",
icon: "./img/icons/icon_main.png",
},
},
},
{
name: "@electron-forge/maker-dmg",
config: {
icon: "./img/icons/icon_main.png",
},
},
],
publishers: [
{
name: "@electron-forge/publisher-github",
config: {
repository: {
owner: "dheerajpv",
name: "multiserver",
},
draft: true,
},
},
],
plugins: [
{
name: "@electron-forge/plugin-webpack",
config: {
mainConfig: "./webpack.main.config.js",
devContentSecurityPolicy:
"default-src 'self' 'unsafe-inline' https://fonts.google.com https://fonts.googleapis.com https://fonts.gstatic.com https://launchermeta.mojang.com https://papermc.io data:; script-src 'self' 'unsafe-eval' 'unsafe-inline' data:",
renderer: {
config: "./webpack.renderer.config.js",
entryPoints: [
{
name: "main_window",
html: "./src/index.html",
js: "./src/windows/MainWindow.tsx",
preload: {
js: "./src/preload.ts",
},
},
{
name: "new_instance_window",
html: "./src/index.html",
js: "./src/windows/NewInstanceWindow.tsx",
preload: {
js: "./src/preload.ts",
},
},
{
name: "edit_instance_window",
html: "./src/index.html",
js: "./src/windows/EditInstanceWindow.tsx",
preload: {
js: "./src/preload.ts",
},
},
{
name: "run_window",
html: "./src/index.html",
js: "./src/windows/RunWindow.tsx",
preload: {
js: "./src/preload.ts",
},
},
{
name: "mods_window",
html: "./src/index.html",
js: "./src/windows/ModsWindow.tsx",
preload: {
js: "./src/preload.ts",
},
},
{
name: "settings_window",
html: "./src/index.html",
js: "./src/windows/SettingsWindow.tsx",
preload: {
js: "./src/preload.ts",
},
},
],
},
},
},
],
};