Files
stream-bypass/src/entries/player/player.html

18 lines
314 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Stream Bypass</title>
</head>
<body>
<script type="module">
import { mount } from 'svelte';
import Player from '~/entries/player/Player.svelte';
mount(Player, {
target: document.body
});
</script>
</body>
</html>