Skip to content

Commit d3508d6

Browse files
committed
This is part of a proof-of-concept
1 parent 9082dc1 commit d3508d6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

index.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<script>
5+
console.log(location.search);
6+
const urlParams = new URLSearchParams(window.location.search);
7+
window.location.replace(urlParams.get('state') + location.search);
8+
</script>
9+
</head>
10+
</html>

0 commit comments

Comments
 (0)