-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtauri.conf.json
More file actions
50 lines (50 loc) · 979 Bytes
/
tauri.conf.json
File metadata and controls
50 lines (50 loc) · 979 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"productName": "PromptKey",
"version": "1.2.1",
"identifier": "com.promptkey.manager",
"build": {
"beforeDevCommand": "",
"beforeBuildCommand": "",
"frontendDist": "./src"
},
"app": {
"windows": [
{
"label": "main",
"title": "PromptKey",
"width": 1000,
"height": 700,
"resizable": true,
"fullscreen": false,
"url": "index.html"
}
],
"security": {
"csp": null
},
"withGlobalTauri": true
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"PromptKey.ico"
],
"externalBin": [],
"windows": {
"webviewInstallMode": {
"type": "skip"
},
"allowDowngrades": true,
"nsis": {
"installMode": "perMachine",
"languages": ["SimpChinese", "English"],
"displayLanguageSelector": true,
"template": null
}
},
"resources": [
"PromptKey.ico"
]
}
}