-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtauri.conf.json
45 lines (45 loc) · 1010 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
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "tauriv2-vue-desktop-starter",
"version": "0.5.0",
"identifier": "com.github.tauriv2-vue-desktop-starter",
"build": {
"beforeDevCommand": "pnpm vite:dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm vite:build",
"frontendDist": "../dist"
},
"app": {
"macOSPrivateApi": true,
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "tauriv2-vue-desktop-starter",
"center": true,
"width": 1000,
"height": 800,
"decorations": true,
"titleBarStyle": "Overlay",
"hiddenTitle": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"macOS": {
"signingIdentity": "-"
},
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
]
}
}