feat: migrated to Astro 6
All checks were successful
Test / npm test (push) Successful in 54s
Test / npm test (pull_request) Successful in 46s

This commit is contained in:
2026-04-09 08:47:37 +00:00
parent 12aa763b05
commit f90592d8a1
7 changed files with 17 additions and 16 deletions

View File

@@ -27,7 +27,7 @@ const latestPosts = posts.slice(0, 5);
{
latestPosts.map((post) => (
<li>
<a href={`/blog/${post.slug}`} lang={post.data.lang}>
<a href={`/blog/${post.id}`} lang={post.data.lang}>
{post.data.title}
</a>