index.html 867 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="zh-cn">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta content="IE=edge" http-equiv="X-UA-Compatible">
  6. <meta content="width=device-width,initial-scale=1.0" name="viewport">
  7. <link href="./favicon.ico" rel="icon" type="image/x-icon">
  8. <title><%= htmlWebpackPlugin.options.title %></title>
  9. <style>
  10. ::-webkit-scrollbar {
  11. width: 12px;
  12. }
  13. ::-webkit-scrollbar-thumb {
  14. border-radius: 3px;
  15. background: rgba(0, 0, 0, 0.2);
  16. }
  17. body {
  18. margin: 0;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <noscript>
  24. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  25. Please enable it to continue.</strong>
  26. </noscript>
  27. <div id="app"></div>
  28. <!-- built files will be auto injected -->
  29. </body>
  30. </html>