mobile-workflow/index.html

25 lines
696 B
HTML
Raw Normal View History

2024-04-28 10:10:03 +08:00
<!DOCTYPE html>
<html lang="en">
2024-11-25 13:57:24 +08:00
<head>
2024-04-28 10:10:03 +08:00
<meta charset="UTF-8" />
<script>
2024-11-25 13:57:24 +08:00
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') ||
CSS.supports('top: constant(a)'))
document.write(
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
2024-04-28 10:10:03 +08:00
</script>
<title></title>
<!--preload-links-->
<!--app-context-->
2024-11-25 13:57:24 +08:00
</head>
<body>
<div id="app">
<!--app-html-->
</div>
2024-04-28 10:10:03 +08:00
<script type="module" src="/main.js"></script>
2024-11-25 13:57:24 +08:00
</body>
</html>