downgrade astro to 3.0

This commit is contained in:
2024-04-12 21:30:54 -04:00
parent 4401ba6c16
commit 99072547c1
5 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ export async function get(context) {
.map((post) => ({
title: post.data.title,
pubDate: post.data.pubDate,
link: `/posts/${post.slug}/`,
link: `/posts/${post.slug}`,
content: sanitizeHtml(parser.render(post.body)),
})),
});