35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" id="favicon" />
|
|
<script>
|
|
// 立即从 localStorage 设置 favicon,避免闪烁
|
|
(function() {
|
|
try {
|
|
var cached = localStorage.getItem('siteInfo');
|
|
if (cached) {
|
|
var info = JSON.parse(cached);
|
|
if (info.siteLogo) {
|
|
var base = import.meta.env?.VITE_API_BASE || '';
|
|
var fullUrl = info.siteLogo.startsWith('http') || info.siteLogo.startsWith('data:')
|
|
? info.siteLogo
|
|
: base + (info.siteLogo.startsWith('/') ? '' : '/') + info.siteLogo;
|
|
document.getElementById('favicon').href = fullUrl;
|
|
}
|
|
}
|
|
} catch (e) {}
|
|
})();
|
|
</script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
|
|
<title>民众智创</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|