fix: Redirect too fast

This commit is contained in:
2024-02-25 14:33:24 +11:00
parent 4ccd401a94
commit 986f14f8e8

View File

@@ -21,7 +21,7 @@
function redirect() {
setTimeout(function() {
window.location.href = '/site';
}, 2000);
}, 4000);
}
redirect();
</script>