index.html
561 Bytes
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<title>LinkMed</title>
<script>
(function () {
const theme = localStorage.getItem("theme") || "light";
document.documentElement.classList.add("theme-" + theme);
})();
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>