mirror of
https://github.com/un-pany/mobvue.git
synced 2026-03-13 10:23:31 +08:00
23 lines
753 B
HTML
23 lines
753 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover"
|
|
/>
|
|
<meta name="description" content="%VITE_PWA_DESCRIPTION%" />
|
|
<meta name="theme-color" content="%VITE_PWA_THEME_COLOR%" />
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
<link rel="icon" href="/favicon.png" type="image/png" />
|
|
<link rel="stylesheet" href="/app-loading.css" />
|
|
<title>%VITE_APP_TITLE%</title>
|
|
</head>
|
|
<body ontouchstart>
|
|
<div id="app">
|
|
<div id="app-loading"></div>
|
|
</div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|