index.html 843 B

12345678910111213141516171819202122232425262728293031
  1. <!--
  2. * @Author: wjc
  3. * @Date: 2022-01-08 17:58:22
  4. * @LastEditors: wjc
  5. * @LastEditTime: 2024-05-29 16:12:34
  6. * @Description:
  7. -->
  8. <!doctype html>
  9. <html lang="en">
  10. <head>
  11. <meta charset="UTF-8" />
  12. <script>
  13. var coverSupport =
  14. 'CSS' in window &&
  15. typeof CSS.supports === 'function' &&
  16. (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
  17. document.write(
  18. '<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
  19. (coverSupport ? ', viewport-fit=cover' : '') +
  20. '" />'
  21. )
  22. </script>
  23. <title></title>
  24. <!--preload-links-->
  25. <!--app-context-->
  26. </head>
  27. <body>
  28. <div id="app"><!--app-html--></div>
  29. <script type="module" src="/src/main.ts"></script>
  30. </body>
  31. </html>