pc.html 976 B

12345678910111213141516171819202122232425
  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 name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <title>
  8. <%= htmlWebpackPlugin.options.title %>
  9. </title>
  10. <script>
  11. document.addEventListener('DOMContentLoaded', function() {
  12. window.innerWidth = Math.min(window.innerWidth, 375)
  13. document.documentElement.style.fontSize = window.innerWidth / 20 + 'px'
  14. })
  15. </script>
  16. <link rel="stylesheet" href="<%= BASE_URL %>static/index.<%= VUE_APP_INDEX_CSS_HASH %>.css" />
  17. </head>
  18. <body>
  19. <noscript>
  20. <strong>Please enable JavaScript to continue.</strong>
  21. </noscript>
  22. <div id="app"></div>
  23. <!-- built files will be auto injected -->
  24. </body>
  25. </html>