index.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="renderer" content="webkit"/>
  6. <meta name="force-rendering" content="webkit"/>
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
  8. <meta name="referrer" content="no-referrer" />
  9. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  10. <title><%= htmlWebpackPlugin.options.title %></title>
  11. </head>
  12. <body>
  13. <noscript>
  14. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  15. Please enable it to continue.</strong>
  16. </noscript>
  17. <div id="app"></div>
  18. <!-- built files will be auto injected -->
  19. <!-- IE 浏览器跳转提示升级页面 start -->
  20. <script>
  21. if (/*@cc_on!@*/false || (!!window.MSInputMethodContext && !!document.documentMode)) {
  22. window.open("https://support.dmeng.net/upgrade-your-browser.html?referrer="+encodeURIComponent(window.location.href));
  23. };
  24. </script>
  25. <!-- IE 浏览器跳转提示升级页面 end -->
  26. <script>
  27. function isIE() {
  28. if (!!window.ActiveXObject || "ActiveXObject" in window){
  29. return true;
  30. }else{
  31. return false;
  32. }
  33. }
  34. </script>
  35. </body>
  36. </html>