-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathtauri.conf.json
More file actions
76 lines (76 loc) · 1.78 KB
/
tauri.conf.json
File metadata and controls
76 lines (76 loc) · 1.78 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"bundle": {
"active": true,
"targets": ["dmg", "msi", "nsis", "appimage", "deb", "rpm"],
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"],
"resources": ["resources/bin/"],
"externalBin": [],
"copyright": "",
"category": "DeveloperTool",
"shortDescription": "",
"longDescription": "",
"macOS": {},
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": "",
"webviewInstallMode": {
"type": "embedBootstrapper"
},
"nsis": {
"installMode": "both",
"installerIcon": "icons/icon.ico",
"displayLanguageSelector": true,
"minimumWebview2Version": "110.0.1531.0"
}
},
"linux": {
"deb": {},
"rpm": {}
}
},
"build": {
"beforeBuildCommand": "pnpm generate",
"frontendDist": "../dist",
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:3000"
},
"productName": "JumpServerClient",
"version": "3.1.0",
"identifier": "com.jumpserver.client",
"plugins": {
"deep-link": {
"desktop": {
"schemes": ["jms"]
}
}
},
"app": {
"macOSPrivateApi": true,
"windows": [
{
"label": "main",
"title": "",
"width": 1000,
"height": 600,
"minWidth": 800,
"minHeight": 480,
"resizable": true,
"fullscreen": false,
"transparent": true,
"decorations": true,
"titleBarStyle": "Overlay",
"devtools": true,
"trafficLightPosition": {
"x": 10,
"y": 18
}
}
],
"security": {
"csp": null,
"dangerousDisableAssetCspModification": true
},
"withGlobalTauri": false
}
}