-
Notifications
You must be signed in to change notification settings - Fork 11
/
tauri.conf.json
80 lines (80 loc) · 2 KB
/
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
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
{
"package": {
"productName": "Typebeat",
"version": "0.1.0"
},
"build": {
"distDir": "ui/dist",
"devPath": "http://localhost:3000",
"beforeBuildCommand": "npx vite build ui",
"withGlobalTauri": true
},
"tauri": {
"bundle": {
"active": true,
"targets": "all",
"identifier": "llc.gumbs.typebeat",
"icon": [
"assets/icons/128x128.png",
"assets/icons/128x128@2x.png",
"assets/icons/32x32.png",
"assets/icons/Square107x107Logo.png",
"assets/icons/Square142x142Logo.png",
"assets/icons/Square150x150Logo.png",
"assets/icons/Square284x284Logo.png",
"assets/icons/Square30x30Logo.png",
"assets/icons/Square310x310Logo.png",
"assets/icons/Square44x44Logo.png",
"assets/icons/Square71x71Logo.png",
"assets/icons/Square89x89Logo.png",
"assets/icons/StoreLogo.png",
"assets/icons/icon.icns",
"assets/icons/icon.ico",
"assets/icons/icon.png"
],
"resources": ["assets/samples", "assets/LICENSE-THIRD-PARTY"],
"externalBin": [],
"copyright": "",
"category": "Music",
"shortDescription": "",
"longDescription": "",
"deb": {
"depends": [],
"useBootstrapper": false
},
"macOS": {
"frameworks": [],
"minimumSystemVersion": "",
"useBootstrapper": false,
"exceptionDomain": "",
"signingIdentity": null,
"entitlements": null
},
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"updater": {
"active": false
},
"allowlist": {
"all": true
},
"windows": [
{
"title": "",
"width": 1200,
"height": 415,
"minWidth": 1200,
"minHeight": 415,
"resizable": true,
"fullscreen": false
}
],
"security": {
"csp": "default-src tauri: 'unsafe-inline'"
}
}
}