index.html 1.0 KB

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