From 218907a946fb344e3dd236fcf1fb64fb285ab2bc Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Wed, 8 Jul 2026 15:46:42 +0200 Subject: [PATCH] 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. --- src-tauri/tauri.conf.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 741eacb..672813d 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -54,7 +54,8 @@ "createUpdaterArtifacts": true, "windows": { "nsis": { - "installMode": "currentUser" + "installMode": "currentUser", + "installerIcon": "icons/icon.ico" } } },