- 实现完整的 WebSocket 连接管理 - 支持 Ed25519 设备身份认证 - 支持流式消息渲染 - 支持 Markdown 渲染(markstream-react) - 支持代码高亮(Shiki) - 完整的日志面板功能 - 响应式布局设计
14 lines
378 B
HTML
14 lines
378 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>OpenClaw Gateway Chat Demo</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|