mirror of
https://github.com/fankes/beszel.git
synced 2025-10-18 17:29:28 +08:00
22 lines
606 B
HTML
22 lines
606 B
HTML
<!doctype html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="manifest" href="./static/manifest.json" />
|
|
<link rel="icon" type="image/svg+xml" href="./static/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
|
|
<title>Beszel</title>
|
|
<script>
|
|
globalThis.BESZEL = {
|
|
BASE_PATH: "%BASE_URL%",
|
|
HUB_VERSION: "{{V}}",
|
|
HUB_URL: "{{HUB_URL}}"
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|