From aa3c1855b28096553dddf7ea6ba59e500259df98 Mon Sep 17 00:00:00 2001 From: esdrasrenan Date: Sat, 13 Dec 2025 21:36:44 -0300 Subject: [PATCH] fix(desktop): remove instalacao WebView2 para evitar UAC duplo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Windows 10/11 ja possuem WebView2 pre-instalado. Usar "skip" elimina o segundo prompt de UAC durante a instalacao. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- apps/desktop/src-tauri/tauri.conf.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/desktop/src-tauri/tauri.conf.json b/apps/desktop/src-tauri/tauri.conf.json index 6c9fa49..d7672b5 100644 --- a/apps/desktop/src-tauri/tauri.conf.json +++ b/apps/desktop/src-tauri/tauri.conf.json @@ -52,8 +52,7 @@ ], "windows": { "webviewInstallMode": { - "type": "downloadBootstrapper", - "silent": true + "type": "skip" }, "nsis": { "displayLanguageSelector": true,