-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtauri.conf.json
56 lines (56 loc) · 1.3 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
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "OneShot WME audio player",
"version": "0.1.0",
"identifier": "ru.xllifi.oneshot-audioplayer",
"build": {
"beforeDevCommand": "yarn dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "yarn build",
"frontendDist": "../build"
},
"app": {
"windows": [
{
"title": "OneShot WME audio player",
"minWidth": 360,
"width": 360,
"minHeight": 260,
"height": 260,
"resizable": false,
"decorations": false,
"transparent": true,
"shadow": false,
"dragDropEnabled": false
}
],
"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"
],
"windows": {
"allowDowngrades": true,
"certificateThumbprint": "B97437DC6159C261B30E8956FE228869EFCA644B",
"digestAlgorithm": "sha256",
"nsis": null,
"signCommand": null,
"timestampUrl": "http://timestamp.comodoca.com",
"tsp": false,
"webviewInstallMode": {
"silent": true,
"type": "downloadBootstrapper"
},
"wix": null
}
}
}