···11+import { dev } from '$app/environment';
22+13export const SITE = 'https://blento.app';
2435type Permissions = {
···44464547// which PDS to use for signup
4648// ATTENTION: pds.rip is only for development, all accounts get deleted automatically after a week
4747-export const signUpPDS = 'https://pds.rip/';
4949+export const signUpPDS = dev ? 'https://pds.rip/' : 'https://selfhosted.social';
-1
src/lib/cards/BlueskyPostCard/index.ts
···55import type { PostView } from '@atcute/bluesky/types/app/feed/defs';
66import { parseBlueskyPostUrl, resolveUri } from './utils';
7788-98export const BlueskyPostCardDefinition = {
109 type: 'blueskyPost',
1110 contentComponent: BlueskyPostCard,