unibest/index.html

25 lines
739 B
HTML
Raw Normal View History

2023-12-21 17:30:49 +08:00
<!doctype html>
<html build-date="%BUILD_DATE%">
2023-12-21 15:26:15 +08:00
<head>
<meta charset="UTF-8" />
<script>
2023-12-21 17:30:49 +08:00
var coverSupport =
'CSS' in window &&
typeof CSS.supports === 'function' &&
(CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
2023-12-21 15:26:15 +08:00
document.write(
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
2023-12-21 17:30:49 +08:00
(coverSupport ? ', viewport-fit=cover' : '') +
'" />',
)
2023-12-21 15:26:15 +08:00
</script>
2024-01-03 11:17:16 +08:00
<title>vue3-uniapp</title>
2023-12-21 15:26:15 +08:00
<!--preload-links-->
<!--app-context-->
</head>
<body>
<div id="app"><!--app-html--></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>