31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!doctype html>
|
||
|
||
<!-- 已响应站点前端内容,建议使用浏览器查看;调试 API 请参考:https://doc.buildadmin.com/senior/server/apiDebug.html -->
|
||
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<link rel="icon" href="/favicon.ico" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>Loading...</title>
|
||
</head>
|
||
<body>
|
||
<div id="app"></div>
|
||
<script>
|
||
;(function () {
|
||
var path = window.location.pathname
|
||
if (path !== '/' && path !== '') return
|
||
var hash = window.location.hash
|
||
if (!hash) {
|
||
window.location.replace(path + '#/admin/login')
|
||
return
|
||
}
|
||
if (hash.indexOf('#/') === 0 && (window.location.search === '?' || window.location.href.indexOf('/?#/') !== -1)) {
|
||
window.history.replaceState(null, '', path + hash)
|
||
}
|
||
})()
|
||
</script>
|
||
<script type="module" src="/src/main.ts"></script>
|
||
</body>
|
||
</html>
|