index.html 887 B

12345678910111213141516171819202122232425262728293031323334
  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. <!-- 浏览器不使用缓存 -->
  8. <meta http-equiv="pragrma" content="no-cache" />
  9. <meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate" />
  10. <meta http-equiv="expires" content="0" />
  11. <link rel="icon" href="./favicon.ico">
  12. <title>demo</title>
  13. <style>
  14. * {
  15. margin: 0;
  16. padding: 0;
  17. box-sizing: border-box;
  18. user-select: none;
  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>