22 lines
902 B
HTML
22 lines
902 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="zh-CN">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<!-- 应用图标 -->
|
||
|
|
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg">
|
||
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon.svg">
|
||
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon.svg">
|
||
|
|
<title>WebSocket 通信中心</title>
|
||
|
|
<!-- 引入Google字体Inter -->
|
||
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||
|
|
<!-- 引入Font Awesome CDN -->
|
||
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
|
||
|
|
|
||
|
|
<!-- Tailwind CSS由main.js导入 -->
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="app"></div>
|
||
|
|
<script type="module" src="/src/main.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|