-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathforge.config.ts
More file actions
60 lines (53 loc) · 1.24 KB
/
forge.config.ts
File metadata and controls
60 lines (53 loc) · 1.24 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
50
51
52
53
54
55
56
57
58
59
60
import { MakerDeb } from "@electron-forge/maker-deb";
import { MakerSquirrel } from "@electron-forge/maker-squirrel";
import { MakerZIP } from "@electron-forge/maker-zip";
import { WebpackPlugin } from "@electron-forge/plugin-webpack";
import type { ForgeConfig } from "@electron-forge/shared-types";
import { mainConfig } from "./webpack.main.config";
import { rendererConfig } from "./webpack.renderer.config";
const config: ForgeConfig = {
packagerConfig: {
icon: "assets/logo", // no extension
},
rebuildConfig: {},
makers: [
// Windows
new MakerSquirrel(
{
name: "loopi",
},
["win32"]
),
// macOS ZIP
new MakerZIP({}, ["darwin"]),
// Linux .deb
new MakerDeb(
{
options: {
icon: "assets/logo.png",
maintainer: "loopi",
},
},
["linux"]
),
],
plugins: [
new WebpackPlugin({
mainConfig,
renderer: {
config: rendererConfig,
entryPoints: [
{
html: "./src/index.html",
js: "./src/renderer.ts",
name: "main_window",
preload: {
js: "./src/preload.ts",
},
},
],
},
}),
],
};
export default config;