1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,IE=IE9">
- <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">
- <script type="text/javascript">
- window.onload =function(){
- if(!!window.ActiveXObject || "ActiveXObject" in window){
- document.getElementById("ie_dialog").style.display = "block";
- }
- }
- </script>
- <style type="text/css">
- #ie_dialog{width: 350px;border: 1px solid #eeeeee;box-shadow: 8px 8px 8px #EEEEEE;margin: 150px auto 0;padding: 30px;text-align: center;display: none;}
- </style>
- <title><%= htmlWebpackPlugin.options.title %></title>
- </head>
- <body>
- <div id="ie_dialog">
- 本平台仅支持非ie浏览器使用
- </div>
- <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>
|