index.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html lang="">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,IE=IE9">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  8. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  9. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  10. <script type="text/javascript">
  11. window.onload = function () {
  12. if (!!window.ActiveXObject || "ActiveXObject" in window) {
  13. document.getElementById("ie_dialog").style.display = "block";
  14. }
  15. }
  16. </script>
  17. <style type="text/css">
  18. #ie_dialog {
  19. width: 350px;
  20. border: 1px solid #eeeeee;
  21. box-shadow: 8px 8px 8px #EEEEEE;
  22. margin: 150px auto 0;
  23. padding: 30px;
  24. text-align: center;
  25. display: none;
  26. }
  27. </style>
  28. <title>
  29. <%= htmlWebpackPlugin.options.title %>
  30. </title>
  31. </head>
  32. <body>
  33. <div id="ie_dialog">
  34. 本平台仅支持非ie浏览器使用
  35. </div>
  36. <noscript>
  37. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  38. Please enable it to continue.</strong>
  39. </noscript>
  40. <div id="app"></div>
  41. <!-- built files will be auto injected -->
  42. </body>
  43. </html>