Skip to content

Commit 04331e5

Browse files
Merge pull request #78 from DefangLabs/avoid-redirecting-to-prod-in-dev
Avoid redirecting to production in development
2 parents 4cf6818 + d34e626 commit 04331e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

static/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<meta charset="UTF-8" />
55
<meta
66
http-equiv="refresh"
7-
content="0; url=https://docs.defang.io/docs"
7+
content="0; url=/docs"
88
/>
99
<script type="text/javascript">
10-
window.location.href = 'https://docs.defang.io/docs';
10+
window.location.href = '/docs';
1111
</script>
1212
<title>Defang Docs</title>
1313
</head>
1414
<body>
1515
If you are not redirected automatically, follow this
16-
<a href="https://docs.defang.io/docs">link</a>.
16+
<a href="/docs">link</a>.
1717
</body>
1818
</html>

0 commit comments

Comments
 (0)