JavaScript-optional public web frontend for Bluesky anartia.kelinci.net
sveltekit atcute bluesky typescript svelte
7
fork

Configure Feed

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

feat: redirect deer.social

Mary 1bfbb7cb 1d7216d3

+6 -1
+6 -1
src/lib/redirector.ts
··· 30 30 const pathname = url.pathname; 31 31 let match: RegExpExecArray | null | undefined; 32 32 33 - if (host === 'bsky.app' || host === 'staging.bsky.app' || host === 'main.bsky.dev') { 33 + if ( 34 + host === 'bsky.app' || 35 + host === 'staging.bsky.app' || 36 + host === 'main.bsky.dev' || 37 + host === 'deer.social' 38 + ) { 34 39 if ((match = BSKY_PROFILE_LINK_RE.exec(pathname))) { 35 40 const [, actor] = match; 36 41