that should not happen either wow i am bad at this
Some checks are pending
ci / builder (push) Waiting to run

This commit is contained in:
Kebo 2025-06-24 20:34:47 -05:00
parent 9739575f50
commit c219a1d60a

View file

@ -6,10 +6,16 @@ import type { APIRoute } from 'astro';
const posts = await getCollection('posts') const posts = await getCollection('posts')
const newestPost = posts.sort((a, b) => compareDesc(new Date(a.data.date), new Date(b.data.date)))[0]; const newestPost = posts.sort(
(a, b) => compareDesc(new Date(a.data.date), new Date(b.data.date))
).filter((e) => {
if (e.data.draft) {
return false;
} else return true;
})[0];
console.log(newestPost.slug) console.log(newestPost.slug)
export const GET: APIRoute = ({ redirect }) => { export const GET: APIRoute = ({ redirect }) => {
return redirect('https://eleboog.com/posts/' + newestPost.slug, 307); return redirect('/posts/' + newestPost.slug, 307);
} }