index.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!--
  2. * @Author: PoJun
  3. * @Date: 2023-10-07 10:46:11
  4. * @LastEditors: PoJun
  5. * @LastEditTime: 2023-10-09 10:04:45
  6. * @Message: Nothing
  7. -->
  8. <!DOCTYPE html>
  9. <html lang="zh-CN">
  10. <head>
  11. <meta charset="utf-8" />
  12. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  13. <title><%= htmlWebpackPlugin.options.title %></title>
  14. <script>
  15. var coverSupport =
  16. "CSS" in window &&
  17. typeof CSS.supports === "function" &&
  18. (CSS.supports("top: env(a)") || CSS.supports("top: constant(a)"));
  19. document.write(
  20. '<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
  21. (coverSupport ? ", viewport-fit=cover" : "") +
  22. '" />'
  23. );
  24. </script>
  25. <link rel="stylesheet" href="<%= BASE_URL %>static/index.<%= VUE_APP_INDEX_CSS_HASH %>.css" />
  26. </head>
  27. <body>
  28. <noscript>
  29. <strong>Please enable JavaScript to continue.</strong>
  30. </noscript>
  31. <div id="app"></div>
  32. <!-- built files will be auto injected -->
  33. </body>
  34. </html>