Files
Firelink/src-tauri/tauri.windows.conf.json
T
NimBold 5ea46024e9 chore(windows): use Firelink icon for NSIS installer
Set the NSIS installer and uninstaller icon to the existing Firelink .ico asset so Windows setup files do not fall back to the default NSIS icon.
2026-07-06 16:44:08 +03:30

28 lines
487 B
JSON

{
"app": {
"windows": [
{
"title": "Firelink",
"width": 1280,
"height": 760,
"minWidth": 960,
"minHeight": 640,
"transparent": true,
"windowEffects": {
"effects": ["mica"],
"state": "active"
}
}
]
},
"bundle": {
"targets": ["nsis"],
"windows": {
"nsis": {
"installerIcon": "icons/icon.ico",
"uninstallerIcon": "icons/icon.ico"
}
}
}
}