Update Git Ignore

This commit is contained in:
2026-01-24 03:23:00 +00:00
parent a4b7c82b1a
commit 95f8c8ce13
6 changed files with 93 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
<script>
import { onMount } from "svelte";
import { isTauri } from "@tauri-apps/api/core";
let { children } = $props();
let isNative = $state(false);
let mounted = $state(false);
onMount(() => {
isNative = isTauri();
mounted = true;
});
</script>
{#if mounted && !isNative}
{@render children()}
{/if}