index.html 919 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="">
  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,initial-scale=1.0" />
  7. <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
  8. <title><%= htmlWebpackPlugin.options.title %></title>
  9. <script type="text/javascript">
  10. var userAgent = navigator.userAgent;
  11. if (/micromessenger/i.test(userAgent)) {
  12. document.write(
  13. '<script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"><\/script>'
  14. );
  15. }
  16. </script>
  17. </head>
  18. <body>
  19. <noscript>
  20. <strong
  21. >We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work
  22. properly without JavaScript enabled. Please enable it to
  23. continue.</strong
  24. >
  25. </noscript>
  26. <div id="app"></div>
  27. <!-- built files will be auto injected -->
  28. </body>
  29. </html>