2
0
mirror of https://github.com/ad1217/PrinterStatus synced 2024-11-13 03:53:29 -05:00

Set HTML charset, viewport, and title

This commit is contained in:
Adam Goldsmith 2021-10-14 11:31:38 -04:00
parent 34f9ec9413
commit 74d976deff

View File

@ -1,4 +1,12 @@
<body>
<div id="app"></div>
<script type="module" src="/src/index.ts"></script>
</body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>3D Printer Status</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/index.ts"></script>
</body>
</html>