index.html 971 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  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, maximum-scale=1, viewport-fit=cover, user-scalable=no, shrink-to-fit=no" />
  7. <meta name="HandheldFriendly" content="true">
  8. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  9. <title>TylooChat聊天室</title>
  10. </head>
  11. <body>
  12. <noscript>
  13. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  14. </noscript>
  15. <div id="app"></div>
  16. <% if (process.env.VUE_APP_CDN === 'true') { %>
  17. <% for(var css of htmlWebpackPlugin.options.cdn.css) { %>
  18. <link rel="stylesheet" href="<%=css%>" as="style">
  19. <% } %>
  20. <% for(var js of htmlWebpackPlugin.options.cdn.js) { %>
  21. <script src="<%=js%>"></script>
  22. <% } %>
  23. <% } %>
  24. </body>
  25. </html>