index.html 988 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  7. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  8. <title><%= webpackConfig.name %></title>
  9. <style>
  10. html, body {
  11. overflow-x: hidden;
  12. }
  13. html {
  14. overflow: -moz-hidden-unscrollable;
  15. height: 100%;
  16. }
  17. body::-webkit-scrollbar {
  18. display: none;
  19. }
  20. body {
  21. -ms-overflow-style: none;
  22. height: 100%;
  23. width: calc(100vw + 18px);
  24. overflow: auto;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <noscript>
  30. <strong>We're sorry but <%= webpackConfig.name %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  31. </noscript>
  32. <div id="app"></div>
  33. <!-- built files will be auto injected -->
  34. </body>
  35. </html>