this repo has no description
0
fork

Configure Feed

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

at main 8 lines 339 B view raw
1/** 2 * Bluesky's public CDN is a cached proxy for repo blob avatars. Any profile 3 * avatar stored as a did/cid pair can use this directly and avoid our app 4 * server's PDS blob proxy on hot UI paths. 5 */ 6export function bskyCdnAvatarUrl(did: string, cid: string): string { 7 return `https://cdn.bsky.app/img/avatar/plain/${did}/${cid}`; 8}