-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtauri.conf.json
More file actions
88 lines (88 loc) · 1.77 KB
/
tauri.conf.json
File metadata and controls
88 lines (88 loc) · 1.77 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
77
78
79
80
81
82
83
84
85
86
87
88
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "mt",
"version": "1.3.0",
"identifier": "com.mt.desktop",
"build": {
"beforeDevCommand": "npm --prefix ../../app/frontend run dev",
"beforeBuildCommand": "npm --prefix ../../app/frontend run build",
"devUrl": "http://localhost:5173",
"frontendDist": "../../app/frontend/dist"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "mt",
"width": 1280,
"height": 720,
"resizable": true,
"fullscreen": false,
"minWidth": 800,
"minHeight": 600,
"titleBarStyle": "Overlay",
"hiddenTitle": true,
"visible": false,
"backgroundColor": "#ffffff"
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": [
"app",
"dmg",
"deb",
"nsis"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"macOS": {
"minimumSystemVersion": "10.15",
"entitlements": "./Entitlements.plist",
"dmg": {
"windowSize": {
"width": 660,
"height": 400
},
"appPosition": {
"x": 180,
"y": 170
},
"applicationFolderPosition": {
"x": 480,
"y": 170
}
}
},
"windows": {
"nsis": {
"installMode": "both"
}
},
"linux": {
"deb": {
"depends": [
"libwebkit2gtk-4.1-0",
"libayatana-appindicator3-1",
"libgtk-3-0",
"pipewire-alsa"
],
"section": "sound"
}
}
},
"plugins": {
"shell": {
"open": true
}
}
}