From 6b3e8d62e389c3afb56df728da946ebb3bf97108 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Fri, 30 Jan 2026 23:37:06 +0100 Subject: [PATCH] corrected build config for mac --- src-tauri/tauri.conf.json | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index f20aa83..9a1d62b 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -24,12 +24,26 @@ ], "security": { "csp": null, - "capabilities": ["main"] + "capabilities": [ + "main" + ] } }, "plugins": { "sql": { - "preload": ["sqlite:text.db"] + "preload": [ + "sqlite:text.db" + ] } + }, + "bundle": { + "active": true, + "targets": [ + "app", + "dmg" + ], + "icon": [ + "icons/icon.png" + ] } }