From ad29f57e65e4839e543ae0d655e6b4886c275761 Mon Sep 17 00:00:00 2001 From: vincent Date: Sat, 29 Aug 2026 22:07:59 +0200 Subject: [PATCH] build: stop producing a disk image "targets": "all" built a 90MB DMG on every single build, for nobody: this is installed to /Applications by copying the .app. Building only the app also shortens each build. A full rebuild from an empty target directory takes 78 seconds, so the cache is worth clearing when it grows rather than hoarding. --- src-tauri/tauri.conf.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index f2fd89a..0f4ef50 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -36,7 +36,7 @@ }, "bundle": { "active": true, - "targets": "all", + "targets": ["app"], "icon": [ "icons/32x32.png", "icons/128x128.png",