index.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html lang="">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta
  7. name="viewport"
  8. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover"
  9. />
  10. <meta name="format-detection" content="telphone=no" />
  11. <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
  12. <title><%= htmlWebpackPlugin.options.title %></title>
  13. <style>
  14. html,
  15. body,
  16. #app,
  17. .scroll-wrapper {
  18. padding: 0;
  19. margin: 0;
  20. height: 100vh;
  21. overflow: hidden;
  22. -webkit-overflow-scrolling: touch;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <noscript>
  28. <strong>
  29. We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work
  30. properly without JavaScript enabled. Please enable it to continue.
  31. </strong>
  32. </noscript>
  33. <div id="app"></div>
  34. <!-- built files will be auto injected -->
  35. <script>
  36. document.body.addEventListener(
  37. 'touchmove',
  38. function (e) {
  39. e.preventDefault()
  40. },
  41. { passive: false },
  42. )
  43. </script>
  44. </body>
  45. </html>