1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html lang="" class="has-bottombar">
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width,initial-scale=1.0" />
- <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;" name="viewport" />
- <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
- <title><%= htmlWebpackPlugin.options.title %></title>
- <meta name="wpk-bid" content="dta_2_131175" />
- <script>
- var isDingtalk = navigator && /DingTalk/.test(navigator.userAgent);
- var isProductEnv =
- window &&
- window.location &&
- window.location.host &&
- window.location.host.indexOf("127.0.0.1") === -1 &&
- window.location.host.indexOf("localhost") === -1 &&
- window.location.host.indexOf("192.168.") === -1;
- // 如果有其它测试域名,请一起排掉,减少测试环境对生产环境监控的干扰
- if (isProductEnv) {
- !(function (c, i, e, b) {
- var h = i.createElement("script");
- var f = i.getElementsByTagName("script")[0];
- h.type = "text/javascript";
- h.crossorigin = true;
- h.onload = function () {
- c[b] || (c[b] = new c.wpkReporter({ bid: "dta_2_131175" }));
- c[b].installAll();
- };
- f.parentNode.insertBefore(h, f);
- h.src = e;
- })(window, document, "https://g.alicdn.com/woodpeckerx/jssdk??wpkReporter.js", "__wpk");
- }
- </script>
- </head>
- <header>
-
- </header>
- <body>
- <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>
- <!-- built files will be auto injected -->
- </body>
- </html>
|