Skip to content

Commit

Permalink
Deploying to gh-pages from @ 6403b16 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
fedellen committed Dec 8, 2023
1 parent 4005147 commit ce52804
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 2 deletions.
13 changes: 13 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Page Not Found</title>
<script>
sessionStorage.redirect = location.href;
</script>
<meta http-equiv="refresh" content="0;URL='/'" />
</head>
<body></body>
</html>
File renamed without changes.
File renamed without changes.
13 changes: 11 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,19 @@
crossorigin
/>
<title>ArDrive Turbo App</title>
<script type="module" crossorigin src="/turbo-app/assets/index-wUtR20Os.js"></script>
<link rel="stylesheet" crossorigin href="/turbo-app/assets/index-ueCe1Kkh.css">
<script type="module" crossorigin src="/turbo-app/assets/main-rZ5dI4br.js"></script>
<link rel="stylesheet" crossorigin href="/turbo-app/assets/main-ueCe1Kkh.css">
</head>
<body>
<div id="root"></div>
<script>
(() => {
const redirect = sessionStorage.redirect;
delete sessionStorage.redirect;
if (redirect && redirect !== location.href) {
history.replaceState(null, null, redirect);
}
})();
</script>
</body>
</html>
13 changes: 13 additions & 0 deletions public/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Page Not Found</title>
<script>
sessionStorage.redirect = location.href;
</script>
<meta http-equiv="refresh" content="0;URL='/'" />
</head>
<body></body>
</html>

0 comments on commit ce52804

Please sign in to comment.