Skip to content

Commit

Permalink
update redirect object so the example works
Browse files Browse the repository at this point in the history
  • Loading branch information
tedk13 committed Jul 20, 2023
1 parent 8692c13 commit cda19dc
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 cda19dc

Please sign in to comment.