1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html lang="">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
- <title><%= htmlWebpackPlugin.options.title %></title>
- <style>
- .page-loading-wrapper {
- position: absolute;
- left: 0;
- top: 0;
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- z-index: 999;
- }
-
- .page-loading {
- width: 100%;
- height: 100%;
- background: #262626 url('./loading.gif') no-repeat center center;
- animation: loadingrotate 2s linear infinite;
- }
-
- @keyframes loadingrotate {
- 100% {
- transform:rotate(360deg);
- }
- }
- </style>
- </head>
- <body>
- <noscript>
- <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
- </noscript>
- <div class="page-loading-wrapper">
- <div class="page-loading"></div>
- </div>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- </html>
|