template.h5.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  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. <title>
  7. <%= htmlWebpackPlugin.options.title %>
  8. </title>
  9. <!-- Open Graph data -->
  10. <!-- <meta property="og:title" content="Title Here" /> -->
  11. <!-- <meta property="og:url" content="http://www.example.com/" /> -->
  12. <!-- <meta property="og:image" content="http://example.com/image.jpg" /> -->
  13. <!-- <meta property="og:description" content="Description Here" /> -->
  14. <script>
  15. var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
  16. document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')
  17. </script>
  18. <link rel="stylesheet" href="<%= BASE_URL %>static/index.<%= VUE_APP_INDEX_CSS_HASH %>.css" />
  19. </head>
  20. <body>
  21. <noscript>
  22. <strong>Please enable JavaScript to continue.</strong>
  23. </noscript>
  24. <div id="app"></div>
  25. <!-- built files will be auto injected -->
  26. <script>
  27. var _hmt = _hmt || [];
  28. (function() {
  29. var hm = document.createElement("script");
  30. hm.src = "https://hm.baidu.com/hm.js?8ae2d12e41f0fe8b183e2e97b5c8e3df";
  31. var s = document.getElementsByTagName("script")[0];
  32. s.parentNode.insertBefore(hm, s);
  33. })();
  34. </script>
  35. </body>
  36. </html>