template.h5.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
  7. <meta http-equiv="Pragma" content="no-cache" />
  8. <meta http-equiv="Expires" content="0" />
  9. <link rel="shortcut icon" type="image/x-icon" href="static/favicon.ico">
  10. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  11. <title>
  12. <%= htmlWebpackPlugin.options.title %>
  13. </title>
  14. <script>
  15. document.addEventListener('DOMContentLoaded', function () {
  16. document.documentElement.style.fontSize = document.documentElement.clientWidth / 20 + 'px'
  17. })
  18. window.addEventListener(
  19. "error",
  20. function (e) {
  21. var jsLoadedErrorReload = window.sessionStorage.getItem(
  22. "jsLoadedErrorReload" // 跳转的标识,存入sessionStorage。用于不可控情况下,防止一直满足条件,触发死循环性的跳转页面
  23. );
  24. const fileReg = /\/js\/((chunk-vendors)|(app))\.[a-zA-Z0-9]+/;
  25. const filename = e.filename || e.target.src || "";
  26. if (jsLoadedErrorReload !== "true" && filename.match(fileReg)) {
  27. window.sessionStorage.setItem("jsLoadedErrorReload", true); // 满足条件则,存入标识
  28. let url = window.location.href;
  29. const timeStr = `timeStr=${Date.now()}`;
  30. url = /\?/.test(url) ? url + "&" + timeStr : url + "?" + timeStr;
  31. window.location.replace(url); // 跳转时添加了时间戳
  32. }
  33. },
  34. true
  35. );
  36. </script>
  37. <link rel="stylesheet" href="<%= BASE_URL %>static/index.css" />
  38. </head>
  39. <body>
  40. <noscript>
  41. <strong>本站点必须要开启JavaScript才能运行</strong>
  42. </noscript>
  43. <div id="app"></div>
  44. </body>
  45. </html>