mirror of
https://github.com/bytedream/stream-bypass.git
synced 2025-05-09 12:15:14 +02:00
19 lines
420 B
HTML
19 lines
420 B
HTML
<!doctype html>
|
|
<html style="overflow-y: hidden" lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>Stream Bypass</title>
|
|
</head>
|
|
<body style="overflow-y: scroll">
|
|
<script type="module">
|
|
import { mount } from 'svelte';
|
|
import Popup from '~/entries/popup/Popup.svelte';
|
|
|
|
mount(Popup, {
|
|
target: document.body
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|