1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 name="viewport" content="width=device-width,initial-scale=1.0">
  7. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  8. <title><%= htmlWebpackPlugin.options.title %></title>
  9. <style>
  10. .page-loading-wrapper {
  11. position: absolute;
  12. left: 0;
  13. top: 0;
  14. width: 100vw;
  15. height: 100vh;
  16. overflow: hidden;
  17. z-index: 999;
  18. }
  19. .page-loading {
  20. width: 100%;
  21. height: 100%;
  22. background: #262626 url('./loading.gif') no-repeat center center;
  23. animation: loadingrotate 2s linear infinite;
  24. }
  25. @keyframes loadingrotate {
  26. 100% {
  27. transform:rotate(360deg);
  28. }
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <noscript>
  34. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  35. </noscript>
  36. <div class="page-loading-wrapper">
  37. <div class="page-loading"></div>
  38. </div>
  39. <div id="app"></div>
  40. <!-- built files will be auto injected -->
  41. </body>
  42. </html>