template.h5.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. <link rel="shortcut icon" type="image/x-icon" href="./static/favicon.ico">
  7. <meta name="viewport"
  8. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  9. <title>
  10. <%= htmlWebpackPlugin.options.title %>
  11. </title>
  12. <style>
  13. ::-webkit-scrollbar {
  14. display: none;
  15. }
  16. </style>
  17. <!-- 正式发布的时候使用,开发期间不启用。↑ -->
  18. <script>
  19. document.addEventListener('DOMContentLoaded', function() {
  20. document.documentElement.style.fontSize = document.documentElement.clientWidth / 20 + 'px'
  21. })
  22. </script>
  23. <link rel="stylesheet" href="<%= BASE_URL %>static/index.css" />
  24. </head>
  25. <body>
  26. <!-- 该文件为 H5 平台的模板 HTML,并非应用入口。 -->
  27. <!-- 请勿在此文件编写页面代码或直接运行此文件。 -->
  28. <!-- 详见文档:https://uniapp.dcloud.io/collocation/manifest?id=h5-template -->
  29. <noscript>
  30. <strong>本站点必须要开启JavaScript才能运行</strong>
  31. </noscript>
  32. <div id="app"></div>
  33. <!-- built files will be auto injected -->
  34. <script>
  35. /*BAIDU_STAT*/
  36. </script>
  37. </body>
  38. </html>