Skip to content

Commit

Permalink
Merge pull request #78 from DefangLabs/avoid-redirecting-to-prod-in-dev
Browse files Browse the repository at this point in the history
Avoid redirecting to production in development
  • Loading branch information
jordanstephens authored Sep 4, 2024
2 parents 4cf6818 + d34e626 commit 04331e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
<meta charset="UTF-8" />
<meta
http-equiv="refresh"
content="0; url=https://docs.defang.io/docs"
content="0; url=/docs"
/>
<script type="text/javascript">
window.location.href = 'https://docs.defang.io/docs';
window.location.href = '/docs';
</script>
<title>Defang Docs</title>
</head>
<body>
If you are not redirected automatically, follow this
<a href="https://docs.defang.io/docs">link</a>.
<a href="/docs">link</a>.
</body>
</html>

0 comments on commit 04331e5

Please sign in to comment.