Don't use public index.html template

This commit is contained in:
Jorge Martín
2025-02-13 17:33:49 +01:00
parent 294e67a5ba
commit 8b7abb6dd3
3 changed files with 4 additions and 7 deletions

22
index.html Normal file
View File

@@ -0,0 +1,22 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.png" />
<link rel="preload" href="/config.json" as="fetch" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0"
/>
<title>Element Call</title>
<script>
window.global = window;
</script>
<script type="module" src="/src/main.tsx"></script>
</head>
<!-- The default class is: .no-theme {display: none}. It will be overwritten once the app is loaded. -->
<body class="no-theme">
<div id="root"></div>
</body>
</html>