forked from imj01y/trace-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtauri.conf.json
More file actions
45 lines (45 loc) · 1.02 KB
/
tauri.conf.json
File metadata and controls
45 lines (45 loc) · 1.02 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
{
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-config-schema/schema.json",
"productName": "Trace UI",
"version": "0.5.3",
"identifier": "com.ai-trace.trace-ui",
"build": {
"frontendDist": "./src-web/dist",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"macOSPrivateApi": true,
"windows": [
{
"title": "Trace UI",
"width": 1400,
"height": 900,
"minWidth": 1024,
"minHeight": 600,
"decorations": true,
"transparent": false,
"titleBarStyle": "Overlay",
"hiddenTitle": true,
"center": true,
"focus": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico",
"icons/icon.png"
]
}
}