Files
nl-tcm-agent-admin/index.html
2026-08-15 12:52:39 +08:00

19 lines
765 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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>