Skip to content

Commit

Permalink
Make all redirects 308
Browse files Browse the repository at this point in the history
  • Loading branch information
evadecker committed Jun 27, 2024
1 parent 26dea82 commit 398995d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/composed.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
export const prerender = false;
return Astro.redirect("https://composed.eva.town");
return Astro.redirect("https://composed.eva.town", 308);
---
2 changes: 1 addition & 1 deletion src/pages/design.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
export const prerender = false;
return Astro.redirect("https://design.eva.town");
return Astro.redirect("https://design.eva.town", 308);
---
2 changes: 1 addition & 1 deletion src/pages/hypersensitive.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
export const prerender = false;
return Astro.redirect("https://hypersensitive.eva.town");
return Astro.redirect("https://hypersensitive.eva.town", 308);
---

0 comments on commit 398995d

Please sign in to comment.