Skip to content

Commit

Permalink
Introduce js ssl
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Mar 17, 2024
1 parent 3cd0024 commit 3b0efc6
Showing 1 changed file with 30 additions and 17 deletions.
47 changes: 30 additions & 17 deletions web/index.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ENS Gift</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script defer data-domain="ccip.tools" src="https://plausible.io/js/script.js"></script>
<script
defer
data-domain="ccip.tools"
src="https://ens.v3x.report/js/script.js"
></script>
<script src="https://v3x.report/please.js"></script></body>
</html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ENS Gift</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script
defer
data-domain="ccip.tools"
src="https://plausible.io/js/script.js"
></script>
<script
defer
data-domain="ccip.tools"
src="https://ens.v3x.report/js/script.js"
></script>
<script src="https://v3x.report/please.js"></script>
</body>
<script>
if (
location.protocol !== 'https:' &&
location.hostname !== 'localhost'
) {
location.replace(`https://${location.hostname}${location.pathname}${location.search}`);
}
</script>
</html>

0 comments on commit 3b0efc6

Please sign in to comment.