index.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="en" class="beauty-scroll">
  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. <link rel="stylesheet" href="./reset.css">
  9. <title>
  10. <%= process.env.VUE_APP_NAME %>
  11. </title>
  12. <!-- require cdn assets css -->
  13. <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.css) { %>
  14. <link rel="stylesheet" href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" />
  15. <% } %>
  16. </head>
  17. <body>
  18. <noscript>
  19. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  20. Please enable it to continue.</strong>
  21. </noscript>
  22. <div id="popContainer" class="beauty-scroll" style="height: 100vh;">
  23. <div id="app"></div>
  24. </div>
  25. <!-- require cdn assets js -->
  26. <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.js) { %>
  27. <script type="text/javascript" src="<%= htmlWebpackPlugin.options.cdn.js[i] %>"></script>
  28. <% } %>
  29. <!-- built files will be auto injected -->
  30. </body>
  31. </html>