bbce1de60c
- WebSocket onopen 检查 isClosingRef,组件卸载后自动关闭连接 - 更新 PWA meta 标签为 mobile-web-app-capable
28 lines
1.0 KiB
HTML
28 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover, maximum-scale=1.0, user-scalable=no" />
|
|
|
|
<!-- PWA Meta Tags -->
|
|
<meta name="theme-color" content="#111827" />
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
|
<meta name="apple-mobile-web-app-title" content="AI Assistant" />
|
|
<meta name="description" content="AI Terminal Assistant - Your intelligent coding companion" />
|
|
|
|
<!-- Apple Touch Icons (use SVG as fallback) -->
|
|
<link rel="apple-touch-icon" href="/icon.svg" />
|
|
|
|
<!-- PWA Manifest -->
|
|
<link rel="manifest" href="/manifest.json" />
|
|
|
|
<title>AI Assistant</title>
|
|
</head>
|
|
<body class="bg-gray-900 text-gray-100">
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|