your personal website on atproto - mirror blento.app

fix

+3 -2
+3 -1
src/lib/atproto/settings.ts
··· 1 + import { dev } from '$app/environment'; 2 + 1 3 export const SITE = 'https://blento.app'; 2 4 3 5 type Permissions = { ··· 44 46 45 47 // which PDS to use for signup 46 48 // ATTENTION: pds.rip is only for development, all accounts get deleted automatically after a week 47 - export const signUpPDS = 'https://pds.rip/'; 49 + export const signUpPDS = dev ? 'https://pds.rip/' : 'https://selfhosted.social';
-1
src/lib/cards/BlueskyPostCard/index.ts
··· 5 5 import type { PostView } from '@atcute/bluesky/types/app/feed/defs'; 6 6 import { parseBlueskyPostUrl, resolveUri } from './utils'; 7 7 8 - 9 8 export const BlueskyPostCardDefinition = { 10 9 type: 'blueskyPost', 11 10 contentComponent: BlueskyPostCard,