Skip to content

Commit

Permalink
Remove delay on redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
kendlbat committed Jan 4, 2024
1 parent dda9017 commit 5d7b529
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion astro/src/layouts/Redirect.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const { to } = Astro.props;
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Redirecting...</title>
<meta http-equiv="refresh" content={`2; url=${to}`} />
<meta http-equiv="refresh" content={`0; url=${to}`} />
</head>
<body>
<p>
Expand Down

0 comments on commit 5d7b529

Please sign in to comment.