index.html 1.3 KB

12345678910111213141516171819202122232425262728293031
  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. <script src="yifengapp://cordova.js"></script>
  10. <script src="yifengapp://YifengPlugins.js"></script>
  11. <script src="https://webapi.amap.com/maps?v=1.4.15&key=b0f7d54befb6e2fc0d0f1317de100a30"></script>
  12. <script>
  13. document.addEventListener('DOMContentLoaded', function() {
  14. document.documentElement.style.fontSize = document.documentElement.clientWidth / 20 + 'px'
  15. })
  16. var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
  17. 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' : '') + '" />')
  18. </script>
  19. <link rel="stylesheet" href="<%= BASE_URL %>static/index.<%= VUE_APP_INDEX_CSS_HASH %>.css" />
  20. </head>
  21. <body>
  22. <noscript>
  23. <strong>Please enable JavaScript to continue.</strong>
  24. </noscript>
  25. <div id="app"></div>
  26. <!-- built files will be auto injected -->
  27. </body>
  28. </html>