-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtauri.conf.json
47 lines (47 loc) · 971 Bytes
/
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
{
"$schema": "https://schema.tauri.app/config/2",
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"beforeBundleCommand": "sh src-tauri/fix_dylib.sh",
"frontendDist": "../build",
"devUrl": "http://localhost:1420"
},
"bundle": {
"macOS": {
"hardenedRuntime": true,
"minimumSystemVersion": "10.13"
},
"active": true,
"targets": "all",
"resources": [
"libchdb.so"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
]
},
"productName": "agx",
"mainBinaryName": "agx",
"version": "0.1.0",
"identifier": "com.agx.app",
"plugins": {},
"app": {
"security": {
"csp": null
},
"windows": [
{
"title": "agx",
"width": 1250,
"height": 900,
"theme": "Dark",
"useHttpsScheme": true
}
]
}
}