index.html 816 B

12345678910111213141516171819202122232425262728
  1. <!doctype html>
  2. <html build-time="%BUILD_TIME%">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
  6. <script>
  7. var coverSupport =
  8. 'CSS' in window &&
  9. typeof CSS.supports === 'function' &&
  10. (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
  11. document.write(
  12. '<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
  13. (coverSupport ? ', viewport-fit=cover' : '') +
  14. '" />',
  15. )
  16. </script>
  17. <title>pda</title>
  18. <!--preload-links-->
  19. <!--app-context-->
  20. </head>
  21. <body>
  22. <div id="app">
  23. <!--app-html-->
  24. </div>
  25. <script type="module" src="/src/main.ts"></script>
  26. </body>
  27. </html>