-
Notifications
You must be signed in to change notification settings - Fork 1
/
tauri.conf.json
50 lines (50 loc) · 1.27 KB
/
tauri.conf.json
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
{
"build": {
"distDir": "./www/build",
"devPath": "http://localhost:3000",
"beforeDevCommand": "yarn start",
"beforeBuildCommand": "yarn build",
"withGlobalTauri": true
},
"tauri": {
"bundle": {
"active": true,
"targets": "msi",
"identifier": "com.msfs-2020-gps-link",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"copyright": "Copyright (c) 2020-2022 Mihai Dinculescu",
"category": "SimulationGame",
"shortDescription": "MSFS 2020 GPS Link",
"longDescription": "MSFS 2020 GPS Link. Transmit GPS data from Microsoft Flight Simulator 2020 to navigation apps.",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
},
"resources": [
"./SimConnect.dll"
]
},
"allowlist": {
"all": true
},
"windows": [
{
"title": "MSFS 2020 GPS Link",
"width": 800,
"height": 600,
"resizable": false,
"fullscreen": false
}
],
"security": {
"csp": "default-src blob: data: filesystem: ws: http: https: 'unsafe-eval' 'unsafe-inline'"
}
}
}