Skip to content

Commit 1a3ba22

Browse files
authored
Add htmlplayerbeta route with redirect on mount
1 parent 296b9fa commit 1a3ba22

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<script lang="ts">
2+
import { onMount } from 'svelte';
3+
import { goto } from '$app/navigation';
4+
5+
onMount(() => {
6+
goto('/beta/HTMLPlayerBeta', { replaceState: true });
7+
});
8+
</script>

0 commit comments

Comments
 (0)