index.html 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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{width: 350px;border: 1px solid #eeeeee;box-shadow: 8px 8px 8px #EEEEEE;margin: 150px auto 0;padding: 30px;text-align: center;display: none;}
  19. </style>
  20. <title><%= htmlWebpackPlugin.options.title %></title>
  21. </head>
  22. <body>
  23. <div id="ie_dialog">
  24. 本平台仅支持非ie浏览器使用
  25. </div>
  26. <noscript>
  27. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  28. </noscript>
  29. <div id="app"></div>
  30. <!-- built files will be auto injected -->
  31. </body>
  32. </html>