build(tauri): add custom icon to Windows installer

Adds configuration to specify a dedicated icon for the NSIS installer when building on Windows. This improves the visual branding and user experience during the installation process.

- Configures the tauri build system to use a specific icon file.
This commit is contained in:
Christoph Brandau
2026-07-08 15:46:42 +02:00
parent 0d4f9ca630
commit 218907a946
+2 -1
View File
@@ -54,7 +54,8 @@
"createUpdaterArtifacts": true,
"windows": {
"nsis": {
"installMode": "currentUser"
"installMode": "currentUser",
"installerIcon": "icons/icon.ico"
}
}
},