Skip to content

Commit

Permalink
Merge pull request #516 from ritterim/tk-astro-redirect
Browse files Browse the repository at this point in the history
update redirect object so the example works
  • Loading branch information
mrtrimble authored Jul 20, 2023
2 parents 8692c13 + cda19dc commit 1e1270d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/pages/redirect/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ import MainLayout from '../../layouts/MainLayout.astro';
const title = "You won't see this page.";
const image = "/images/default/rimdev-configyml.jpg";
const redirect = "/the-pets-of-rimdev"
const redirect = {
url: "/the-pets-of-rimdev",
timing: null
}
console.log(redirect)
---

<MainLayout title={title} image={image} redirect={redirect}>
Expand Down

0 comments on commit 1e1270d

Please sign in to comment.