-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtauri.conf.json
More file actions
39 lines (39 loc) · 763 Bytes
/
Copy pathtauri.conf.json
File metadata and controls
39 lines (39 loc) · 763 Bytes
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
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Window Crontab",
"version": "0.2.12",
"identifier": "com.crontab.app",
"build": {
"frontendDist": "ui"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"label": "main",
"title": "Window Crontab",
"width": 960,
"height": 680,
"minWidth": 720,
"minHeight": 520,
"visible": false,
"decorations": true,
"resizable": true,
"center": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "msi",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.ico"
]
}
}