this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix canonical URL issue

alice 6fd4bce6 ee659efa

+6
+6
src/app/post/[rkey]/page.tsx
··· 31 31 title: post.value.title + ` — ${HOSTNAME}`, 32 32 authors: [{ name: AUTHOR_NAME, url: `https://bsky.app/profile/${MY_DID}` }], 33 33 description: `by ${AUTHOR_NAME} · ${readingTime(post.value.content).text}`, 34 + alternates: { 35 + canonical: `https://${HOSTNAME}/post/${rkey}`, 36 + types: { 37 + "application/rss+xml": `https://${HOSTNAME}/rss`, 38 + }, 39 + }, 34 40 }; 35 41 } 36 42