From d94d7fef6e27554c553f3fb7cb60f37c5697ff22 Mon Sep 17 00:00:00 2001 From: Jordon Brooks Date: Sun, 22 Jun 2025 15:11:05 +0100 Subject: [PATCH] Refactor bundle targets in tauri configuration to use an array format --- src-tauri/tauri.conf.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 4a7b19c..7beea46 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -21,7 +21,12 @@ }, "bundle": { "active": true, - "targets": "all", + "targets": [ + "rpm", + "app", + "deb", + "msi" + ], "icon": [ "icons/32x32.png", "icons/128x128.png",