Skip to content

Commit

Permalink
修改跳转逻辑
Browse files Browse the repository at this point in the history
  • Loading branch information
easychen committed Jun 30, 2023
1 parent 3e04ce1 commit 62ec989
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
<!DOCTYPE html>
<html lang="zh">
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DeepGPT</title>
<!-- add meta to force page redirect to ./build/index.html -->
<meta http-equiv="refresh" content="0;url=./build/index.html">
</head>
<body>
<script type="javascript">
// forward to build/index.html
window.location.href = "./build/index.html";
window.setTimeout(function(){
window.location.href = "./build/index.html";
}, 100);
</script>
<a href="./build/index.html">正在跳转,点此加速</a>
</body>
Expand Down

0 comments on commit 62ec989

Please sign in to comment.