mirror of
https://github.com/bytedream/stream-bypass.git
synced 2025-12-15 00:22:08 +01:00
18 lines
314 B
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>
|