123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!DOCTYPE html>
- <html lang="">
- <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" />
- <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
- <title><%= htmlWebpackPlugin.options.title %></title>
- <style type="text/css">
- .footer_copy {
- padding: 10px 0;
- text-align: center;
- color: #999;
- }
- .footer_copy a {
- margin-right: 5px;
- color: #fff;
- }
- </style>
- <script type="text/javascript">
- var userAgent = navigator.userAgent;
- if (/micromessenger/i.test(userAgent)) {
- document.write(
- '<script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"><\/script>'
- );
- }
- </script>
- </head>
- <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 -->
- <div class="footer_copy">
- <a href="https://beian.miit.gov.cn" target="_blank">
- 蜀ICP备18008991号-3
- </a>
- 版权所有:3Dqueen
- </div>
- </body>
- </html>
|