index.html 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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="icon" href="../src/static/favicon.ico">
  7. <title>
  8. <%= htmlWebpackPlugin.options.title %>
  9. </title>
  10. <script>
  11. document.addEventListener('DOMContentLoaded', function () {
  12. document.documentElement.style.fontSize = document.documentElement.clientWidth / 20 + 'px'
  13. })
  14. var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS
  15. .supports('top: constant(a)'))
  16. document.write(
  17. '<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
  18. (coverSupport ? ', viewport-fit=cover' : '') + '" />')
  19. </script>
  20. <link rel="stylesheet" href="<%= BASE_URL %>static/index.<%= VUE_APP_INDEX_CSS_HASH %>.css" />
  21. </head>
  22. <body>
  23. <noscript>
  24. <strong>Please enable JavaScript to continue.</strong>
  25. </noscript>
  26. <div id="app"></div>
  27. <!-- built files will be auto injected -->
  28. </body>
  29. </html>