aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/vms/+page.svelte
blob: bc563303ddddb3b69e628081e2d99fafe6b6d740 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script lang="ts">
  import { onDestroy, onMount } from 'svelte';

  let mounted = $state(false);
  onMount(() => (mounted = true));
  onDestroy(() => (mounted = false));
</script>

<svelte:head>
  {#if !mounted}
    <noscript>
      <meta http-equiv="refresh" content="5" />
    </noscript>
  {/if}
</svelte:head>