mirror of
https://github.com/bytedream/stream-bypass.git
synced 2025-12-15 00:22:08 +01:00
27 lines
456 B
HTML
27 lines
456 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Stream Bypass</title>
|
|
<style>
|
|
html,
|
|
body,
|
|
video {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="background-color: #131313; overflow: hidden">
|
|
<script type="module">
|
|
import { mount } from 'svelte';
|
|
import Player from './Player.svelte';
|
|
|
|
mount(Player, {
|
|
target: document.body
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|