index.html 467 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <link href="/favicon.ico" rel="icon">
  6. <meta content="width=device-width,initial-scale=1.0,user-scalable=0" name="viewport">
  7. <style type="text/css">
  8. body {
  9. height: auto !important;
  10. min-height: 100%;
  11. }
  12. #app {
  13. height: 100%;
  14. }
  15. </style>
  16. <title><%- title %></title>
  17. </head>
  18. <body>
  19. <div id="app"></div>
  20. <script type="module" src="/src/main.ts"></script>
  21. </body>
  22. </html>