| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!doctype html>
- <html lang="">
- <head>
- <meta charset="utf-8" />
- <meta
- http-equiv="X-UA-Compatible"
- content="IE=edge"
- />
- <meta name="viewport" />
- <!-- B站接口获取图片资源出现403的解决方案 -->
- <meta
- name="referrer"
- content="no-referrer"
- />
- <link
- rel="icon"
- href="<%= BASE_URL %>favicon.ico"
- />
- <title><%= htmlWebpackPlugin.options.title %></title>
- <script>
- var _hmt = _hmt || [];
- (function () {
- var hm = document.createElement('script');
- hm.src = 'https://hm.baidu.com/hm.js?ffc088b4c034487265310b8492d3074c';
- var s = document.getElementsByTagName('script')[0];
- s.parentNode.insertBefore(hm, s);
- })();
- </script>
- <!-- 谷歌广告 -->
- <script
- async
- src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6064454674933772"
- crossorigin="anonymous"
- ></script>
- <!-- <script>
- (adsbygoogle = window.adsbygoogle || []).push({});
- </script> -->
- </head>
- <body>
- <script
- src="<%= BASE_URL %>TXLivePusher-2.1.1.min.js"
- charset="utf-8"
- ></script>
- <noscript>
- <strong>
- We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work
- properly without JavaScript enabled. Please enable it to continue.
- </strong>
- </noscript>
- <div id="app"></div>
- </body>
- </html>
|