Files

19 lines
765 B
HTML
Raw Permalink Normal View History

2025-04-24 13:39:24 +08:00
<!doctype html>
2026-08-15 12:52:39 +08:00
<html lang="zh-CN" data-theme="dark">
2025-04-24 13:39:24 +08:00
<head>
<meta charset="UTF-8" />
2026-08-15 12:52:39 +08:00
<!-- 内联 favicon避免浏览器请求 /favicon.ico 产生 401 噪音(与旧面板同款方案) -->
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='.9em' font-size='90'%3E%F0%9F%8C%BF%3C/text%3E%3C/svg%3E" />
2025-04-24 13:39:24 +08:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2026-08-15 12:52:39 +08:00
<title>TCM Agent 控制台</title>
<style>
/* 首屏防白闪JS 加载前先铺暖黑底 */
html[data-theme='dark'] body { background: #16100a; }
</style>
2025-04-24 13:39:24 +08:00
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>