index.html 930 B

123456789101112131415161718192021222324252627282930313233
  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. min-width: 1200px;
  20. background: #f8f9fb;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <noscript>
  26. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  27. Please enable it to continue.</strong>
  28. </noscript>
  29. <div id="app"></div>
  30. <!-- built files will be auto injected -->
  31. </body>
  32. </html>