Files
buzz/desktop/index.html

28 lines
866 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/buzz.svg?v=20260610" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title></title>
<!--
Boot background: the document must be black from its very first paint,
before the app bundle (and its stylesheets) load, so cold boot never
flashes white ahead of the loading gate. The window itself is also
black pre-document via `backgroundColor` in tauri.conf.json. The body
paints its own themed background once the app CSS loads, so this never
shows through after boot.
-->
<style>
html {
background-color: #000;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>