<!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; /* background: url(./images/loadingBgc.jpg) no-repeat 100% 100%; */ display: flex; /* display: none; */ justify-content: center; align-items: center; } .page-loading { width: 100vw; /* height: 100vw; */ } .page-loading .loading-image { width: 25vw; height: 25vw; animation: loadingrotate 4.5s linear infinite; margin: auto; } .page-loading .loading-tips { width: 100%; margin-top: 2em; } @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 class="loading-image"> <img src="./images/Loading.png" width="100%" alt=""> </div> </div> </div> <div id="app"></div> <!-- built files will be auto injected --> </body> </html>