Links: trailing-slash internal URLs (no dir-redirect → kills the :8080/cached-301 issue)
build-and-deploy / build (push) Failing after 13m10s

This commit is contained in:
2026-06-17 20:48:06 +10:00
parent a729484c7a
commit 1dc9c82cb3
9 changed files with 16 additions and 13 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ const tags = allTags(posts);
<nav class="blog__tags" aria-label="Filter by tag" data-reveal>
<span class="mono blog__tags-label">tags:</span>
{tags.map((t) => (
<a class="tag blog__tag" href={`/blog/tags/${t}`}>{t}</a>
<a class="tag blog__tag" href={`/blog/tags/${t}/`}>{t}</a>
))}
</nav>
)}