-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtauri.conf.json
More file actions
57 lines (57 loc) · 1.18 KB
/
tauri.conf.json
File metadata and controls
57 lines (57 loc) · 1.18 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
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "Staged",
"version": "0.1.1",
"identifier": "xyz.block.staged.beta.app",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:5174",
"beforeDevCommand": "VITE_PORT=${VITE_PORT:-5174} pnpm run dev",
"beforeBuildCommand": "pnpm run build"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "Staged",
"width": 1600,
"height": 1200,
"minWidth": 1100,
"minHeight": 700,
"resizable": true,
"fullscreen": false,
"visible": false,
"titleBarStyle": "Overlay",
"hiddenTitle": true,
"trafficLightPosition": {
"x": 12,
"y": 22
}
}
],
"security": {
"csp": null
}
},
"plugins": {
"deep-link": {
"desktop": {
"schemes": ["staged"]
}
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"macOS": {
"infoPlist": "Info.plist"
}
}
}