28 lines
1.3 KiB
HTML
28 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||
<meta name="renderer" content="webkit">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||
<title><%= webpackConfig.name %></title>
|
||
</head>
|
||
<body>
|
||
<!-- import cdn js -->
|
||
<% for(var js of htmlWebpackPlugin.options.cdn.js) { %>
|
||
<script src="<%=js%>"></script>
|
||
<% } %>
|
||
<div id="app"></div>
|
||
<!-- built files will be auto injected -->
|
||
|
||
<!-- Compatibility tip -->
|
||
<script>
|
||
if (typeof (Promise) === 'undefined') {
|
||
var app = document.getElementById('app')
|
||
app.innerHTML = '<h1>你正在使用的浏览器版本过低,将不能正常浏览和使用</h1><h3>推荐使用chrome或者QQ浏览器下载地址:</h3><a style="color:#409EFF" href="https://www.google.cn/chrome/" target="_blank" rel="noopener noreferrer">点击下载chrome</a><br /><br /><a style="color:#409EFF" href="https://browser.qq.com/" target="_blank" rel="noopener noreferrer">点击下载QQ浏览器</a><br /><h5>(或者使用平板手机等移动设备进行访问)</h5>'
|
||
}
|
||
</script>
|
||
</body>
|
||
</html>
|