29 lines
1014 B
HTML
29 lines
1014 B
HTML
<!DOCTYPE html>
|
||
<html lang="">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
|
||
<title>人生无限公司</title>
|
||
|
||
<!-- 基础favicon -->
|
||
<link rel="icon" type="image/x-icon" href="/logo.ico">
|
||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||
<link rel="icon" type="image/png" sizes="64x64" href="/favicon-64x64.png">
|
||
|
||
<!-- iOS主屏图标 -->
|
||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||
|
||
<!-- Android主屏图标(通过Manifest) -->
|
||
<link rel="manifest" href="/manifest.json">
|
||
|
||
<!-- 移动端Web App配置 -->
|
||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||
<meta name="mobile-web-app-capable" content="yes">
|
||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||
</head>
|
||
<body>
|
||
<div id="app"></div>
|
||
<script type="module" src="/src/main.js"></script>
|
||
</body>
|
||
</html>
|