index.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!DOCTYPE html>
  2. <html lang="en">
  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>加载中...</title>
  9. <style>
  10. /*修改滚动条样式*/
  11. div::-webkit-scrollbar {
  12. width: 5px;
  13. height: 10px;
  14. }
  15. div::-webkit-scrollbar-track {
  16. background: rgb(239, 239, 239);
  17. border-radius: 2px;
  18. }
  19. div::-webkit-scrollbar-thumb {
  20. background: #bfbfbf;
  21. border-radius: 10px;
  22. }
  23. div::-webkit-scrollbar-thumb:hover {
  24. background: #333;
  25. }
  26. div::-webkit-scrollbar-corner {
  27. background: #179a16;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <noscript>
  33. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  34. </noscript>
  35. <div id="app"></div>
  36. <!-- built files will be auto injected -->
  37. </body>
  38. </html>