From 5ea46024e9b2e757107bc948bc7755a78f1993a9 Mon Sep 17 00:00:00 2001 From: NimBold Date: Mon, 6 Jul 2026 16:44:08 +0330 Subject: [PATCH] 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. --- src-tauri/tauri.windows.conf.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src-tauri/tauri.windows.conf.json b/src-tauri/tauri.windows.conf.json index 534aa55..f4d74c9 100644 --- a/src-tauri/tauri.windows.conf.json +++ b/src-tauri/tauri.windows.conf.json @@ -16,6 +16,12 @@ ] }, "bundle": { - "targets": ["nsis"] + "targets": ["nsis"], + "windows": { + "nsis": { + "installerIcon": "icons/icon.ico", + "uninstallerIcon": "icons/icon.ico" + } + } } }