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