index.html
895 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="icon" href="/cnlive.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title></title>
<script type="text/javascript">
// chrome 71 以下不支持globalThis
globalThis = window
</script>
</head>
<body>
<script>
// TIP 拦截IE浏览器
var UA = window.navigator.userAgent
var msie = UA.indexOf("MSIE")
if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {
alert("为了您的数据安全,请使用Chrome内核浏览器阅览本站内容!")
location.href = 'ie.html'
}
</script>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>