This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
forge.config.js
56 lines (56 loc) · 1.58 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
module.exports = {
// see: https://github.com/electron-userland/electron-forge/issues/1224#issuecomment-544294836
// this seems to be to ensure all deps of better-sqlite3 are copied
packagerConfig: {
icon: './src/etc/person.png',
asar: true,
},
makers: [
{
name: '@electron-forge/maker-squirrel',
config: {
name: 'Personal',
iconUrl: './src/etc/person.ico',
copyright: 'AWEL Kt. Zürich, Schweiz',
owners: 'AWEL Kt. Zürich, Schweiz',
description: 'Damit verwaltet das AWEL Kt. ZH Personal-Daten',
authors: 'Alexander Gabriel, Gabriel-Software',
},
},
{
name: '@electron-forge/maker-zip',
platforms: ['darwin'],
},
{
name: '@electron-forge/maker-deb',
config: {},
},
{
name: '@electron-forge/maker-rpm',
config: {},
},
],
plugins: [
{
name: '@electron-forge/plugin-webpack',
config: {
mainConfig: './webpack.main.config.js',
renderer: {
config: './webpack.renderer.config.js',
entryPoints: [
{
html: './src/index.html',
js: './src/index.js',
name: 'main_window',
},
],
nodeIntegration: true, // defaults to false
contextIsolation: false,
enableRemoteModule: true,
},
devContentSecurityPolicy: `default-src 'self' 'unsafe-inline' data:; script-src 'self' 'unsafe-eval' 'unsafe-inline' data:`,
},
},
{ name: '@electron-forge/plugin-auto-unpack-natives', config: {} },
],
}