Files
firezone/rust/gui-client/src-tauri/tauri.conf.json
Jamil 13c5b18bca chore(gui-client): Remove unused Tauri app icons (#4304)
Not sure if this will fix #3999 but the ~~colors for the existing icon
are wrong, so we need to fix them anyway.~~

Removes unused Tauri app icons.

Refs #3999
2024-03-27 16:50:39 +00:00

75 lines
1.5 KiB
JSON

{
"build": {
"beforeDevCommand": "",
"beforeBuildCommand": "",
"devPath": "../src",
"distDir": "../src",
"withGlobalTauri": true
},
"package": {
"productName": "Firezone"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": false
}
},
"bundle": {
"active": true,
"targets": ["deb", "msi"],
"identifier": "dev.firezone.client",
"icon": [
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/32x32.png",
"icons/icon.ico",
"icons/icon.png"
],
"publisher": "Firezone",
"shortDescription": "Firezone"
},
"security": {
"csp": null
},
"systemTray": {
"iconPath": "icons/icon.ico",
"iconAsTemplate": true
},
"windows": [
{
"label": "about",
"title": "About Firezone",
"url": "about.html",
"fullscreen": false,
"resizable": true,
"width": 640,
"height": 480,
"visible": false
},
{
"label": "settings",
"title": "Settings",
"url": "settings.html",
"fullscreen": false,
"resizable": true,
"width": 640,
"height": 480,
"visible": false
},
{
"label": "welcome",
"title": "Welcome",
"url": "welcome.html",
"fullscreen": false,
"resizable": true,
"width": 640,
"height": 480,
"visible": false
}
]
}
}