index.html 803 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="">
  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="/icon/favicon.ico">
  8. <title>xxx 大屏</title>
  9. <style>
  10. html, body {
  11. width: 100%;
  12. margin: 0;
  13. padding: 0;
  14. background-color: black;
  15. }
  16. #app {
  17. min-height: 100vh;
  18. }
  19. #app * {
  20. color: white;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <noscript>
  26. <strong>
  27. We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  28. Please enable it to continue.
  29. </strong>
  30. </noscript>
  31. <div id="app"></div>
  32. </body>
  33. </html>