forked from gulbanana/gg
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTauri.toml
More file actions
45 lines (39 loc) · 1.04 KB
/
Tauri.toml
File metadata and controls
45 lines (39 loc) · 1.04 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
productName = "jjuicy"
version = "1.0.3"
identifier = "io.starburst.jjuicy"
[[app.security.capabilities]]
identifier = "main-capability"
description = "Capability for all windows"
windows = ["repo-*"]
permissions = [
"core:path:default",
"core:event:default",
"core:window:default",
"core:app:default",
"core:resources:default",
"core:menu:default",
"core:tray:default",
"shell:allow-open",
]
[build]
beforeBuildCommand = "npm run build"
beforeDevCommand = "npx vite"
devUrl = "http://localhost:6973"
frontendDist = "dist"
features = ["app"]
[bundle]
active = true # Comment this out or set to false to disable bundle compilation
targets = "all"
icon = [
"res/icons/32x32.png",
"res/icons/128x128.png",
"res/icons/128x128@2x.png",
"res/icons/icon.icns",
"res/icons/icon.ico",
]
[bundle.windows]
signCommand = "trusted-signing-cli -e https://wus2.codesigning.azure.net/ -a agile-signing -c cloud-apps %1"
[bundle.windows.wix]
fragmentPaths = ["res/path-fragment.wxs"]
componentRefs = ["PathEntry"]
[plugins]