oops i forgor to switch that back lol

This commit is contained in:
Kebo Kitanari 2024-11-12 15:31:16 -06:00
parent 57a539a3df
commit af5300ec16

View file

@ -11,5 +11,5 @@ const newestPost = posts.sort((a, b) => compareDesc(new Date(a.data.date), new D
console.log(newestPost.slug)
export const GET: APIRoute = ({ redirect }) => {
return redirect('http://localhost:4321/posts/' + newestPost.slug, 307);
return redirect('https://eleboog.com/posts/' + newestPost.slug, 307);
}