index.html 1.2 KB

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