index.html 870 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <script>
  6. var coverSupport =
  7. "CSS" in window &&
  8. typeof CSS.supports === "function" &&
  9. (CSS.supports("top: env(a)") || CSS.supports("top: constant(a)"));
  10. document.write(
  11. '<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
  12. (coverSupport ? ", viewport-fit=cover" : "") +
  13. '" />'
  14. );
  15. </script>
  16. <title></title>
  17. <!--preload-links-->
  18. <!--app-context-->
  19. <style>
  20. body,
  21. html {
  22. scrollbar-width: none;
  23. &::-webkit-scrollbar {
  24. display: none;
  25. width: 0;
  26. height: 0;
  27. color: transparent;
  28. }
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div id="app"><!--app-html--></div>
  34. <script type="module" src="/main"></script>
  35. </body>
  36. </html>