From b4bd114eed80c4b6bb59d9bec04a2ef8bc61f051 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Tue, 16 Jun 2026 05:14:08 +0700 Subject: [PATCH] fix(tauri): configure deep-link plugin for mobile custom scheme --- apps/tauri/tauri.conf.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/apps/tauri/tauri.conf.json b/apps/tauri/tauri.conf.json index 3f545fe..58aa9b6 100644 --- a/apps/tauri/tauri.conf.json +++ b/apps/tauri/tauri.conf.json @@ -26,5 +26,13 @@ "active": true, "targets": "all" }, - "plugins": {} + "plugins": { + "deep-link": { + "mobile": [ + { + "scheme": ["zeavisedu"] + } + ] + } + } }