From 13d87e44c8bdad46da8c602c282badb445231e0b Mon Sep 17 00:00:00 2001 From: Max Litruv Boonzaayer Date: Sat, 24 Jan 2026 08:08:59 +1100 Subject: [PATCH] fix: update Tauri shell import to use Vite ignore for compatibility --- src/app/utils/tauri.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/utils/tauri.ts b/src/app/utils/tauri.ts index 412509c..f9858b3 100644 --- a/src/app/utils/tauri.ts +++ b/src/app/utils/tauri.ts @@ -7,7 +7,7 @@ export const openExternalUrl = async (url: string): Promise => { if (typeof window !== 'undefined' && (window as any).__TAURI__) { try { // @ts-ignore - const { open } = await import('@tauri-apps/plugin-shell'); + const { open } = await import(/* @vite-ignore */ '@tauri-apps/plugin-shell'); await open(url); return; } catch (err) {