index.html 926 B

123456789101112131415161718192021222324
  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. <title><%= htmlWebpackPlugin.options.title %></title>
  8. <style>
  9. /* 滚动条 */
  10. ::-webkit-scrollbar{width:8px;height:4px}
  11. ::-webkit-scrollbar-button{width:10px;height:0}
  12. ::-webkit-scrollbar-track{background:0 0}
  13. ::-webkit-scrollbar-thumb{background:#E6FFEE;-webkit-transition:.3s;transition:.3s}
  14. ::-webkit-scrollbar-thumb:hover{background-color:#07C160}
  15. ::-webkit-scrollbar-thumb:active{background-color:#E6FFEE}
  16. </style>
  17. </head>
  18. <body>
  19. <noscript>
  20. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  21. </noscript>
  22. <div id="app"></div>
  23. </body>
  24. </html>