-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtauri.conf.json5
More file actions
58 lines (58 loc) · 1.36 KB
/
tauri.conf.json5
File metadata and controls
58 lines (58 loc) · 1.36 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
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "DeepWiki Bookmarker",
"version": "0.1.0",
"identifier": "com.ynqa.dwb",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "",
"titleBarStyle": "Overlay",
"label": "main",
"width": 800,
"height": 600
},
{
"title": "",
"titleBarStyle": "Overlay",
"label": "check_for_updates",
"width": 500,
"height": 300,
"minWidth": 500,
"minHeight": 300,
"visible": false,
"minimizable": false,
"maximizable": false,
},
],
"security": {
"csp": null
}
},
"bundle": {
"createUpdaterArtifacts": true,
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"plugins": {
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDQ2QUU3RjI0MzQ1MzQ4NjIKUldSaVNGTTBKSCt1UnFFZ2xybkFtTjRZa05oVVpDb1ZieVlyL0Yvckxkb0FrWGx5bWRIYUI5Zm0K",
"endpoints": [
"https://github.com/ynqa/dwb/releases/latest/download/latest.json",
]
}
}
}