index.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!--
  2. * @FilePath: index.html
  3. * @Author: 旭颖
  4. * @Date: 2023-03-24 09:39:50
  5. * @LastEditors: Please set LastEditors
  6. * @LastEditTime: 2023-04-07 14:59:15
  7. -->
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <meta charset="utf-8">
  12. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  13. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  14. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  15. <% for (var i in htmlWebpackPlugin.options.cdn&&htmlWebpackPlugin.options.cdn.css) { %>
  16. <link href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" rel="preload" as="style" />
  17. <link href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" rel="stylesheet" />
  18. <% } %>
  19. <title>
  20. <%= webpackConfig.name %>
  21. </title>
  22. <style type="text/css">
  23. #ks_ol_floatWin {
  24. left: inherit !important;
  25. right: 0 !important;
  26. height: 55px !important;
  27. bottom: 70px !important;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <noscript>
  33. <strong>We're sorry but <%= webpackConfig.name %> doesn't work properly without JavaScript enabled. Please enable it
  34. to continue.</strong>
  35. </noscript>
  36. <div id="app"></div>
  37. <!-- 使用CDN加速的JS文件,配置在vue.config.js下 -->
  38. <% for (var i in htmlWebpackPlugin.options.cdn&&htmlWebpackPlugin.options.cdn.js) { %>
  39. <script src="<%= htmlWebpackPlugin.options.cdn.js[i] %>"></script>
  40. <% } %>
  41. <!-- built files will be auto injected -->
  42. <!-- <script>
  43. javascript: (function () {
  44. var script = document.createElement('script');
  45. script.src = "//cdn.jsdelivr.net/npm/eruda";
  46. document.body.appendChild(script);
  47. script.onload = function () {
  48. eruda.init()
  49. }
  50. })();
  51. </script> -->
  52. <script type="text/javascript" src="http://z1-pcok6.kuaishangkf.com/bs/ks.j?cI=531983&fI=149591&ism=1"
  53. charset="utf-8"></script>
  54. <!-- <script src="js/vue.min.js"></script> -->
  55. </body>
  56. </html>