index.html 920 B

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