19 lines
765 B
HTML
19 lines
765 B
HTML
<!doctype html>
|
||
<html lang="zh-CN" data-theme="dark">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<!-- 内联 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" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>TCM Agent 控制台</title>
|
||
<style>
|
||
/* 首屏防白闪:JS 加载前先铺暖黑底 */
|
||
html[data-theme='dark'] body { background: #16100a; }
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div id="app"></div>
|
||
<script type="module" src="/src/main.js"></script>
|
||
</body>
|
||
</html>
|