15 lines
455 B
HTML
15 lines
455 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, viewport-fit=cover" />
|
|
<!-- icon and manifest are provided by App.vue -->
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
<script>
|
|
// screen.orientation.lock("portrait-primary").catch(() => {});
|
|
</script>
|
|
</body>
|
|
</html>
|