Skip to content

Commit c64ac94

Browse files
committed
fix a issue that leads users cant access detailed blog page
1 parent 1e99576 commit c64ac94

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pages/blog/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const posts = (await getCollection('blog')).sort(
9494
{
9595
posts.map((post) => (
9696
<li>
97-
<a href={`/blog/${post.id}/`}>
97+
<a href={`/blog/dylanku2077.github.io/${post.id}/`}>
9898
{post.data.heroImage && (
9999
<Image width={720} height={360} src={post.data.heroImage} alt="" />
100100
)}

0 commit comments

Comments
 (0)