Files
stayreal/vue3-project/index.html
lychang 261c1482eb
All checks were successful
Xiaoshiliu / build (push) Successful in 28s
fix problems
2025-10-05 14:11:48 +08:00

29 lines
1014 B
HTML
Raw Permalink 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="">
<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>