···46464747// which PDS to use for signup
4848// ATTENTION: pds.rip is only for development, all accounts get deleted automatically after a week
4949-export const signUpPDS = dev ? 'https://pds.rip/' : 'https://selfhosted.social';
4949+const devPDS = 'https://pds.rip/';
5050+const prodPDS = 'https://selfhosted.social/';
5151+export const signUpPDS = dev ? devPDS : prodPDS;
5252+5353+// where to redirect after oauth login/signup, e.g. /oauth/callback
5454+export const REDIRECT_PATH = '/oauth/callback';
5555+5656+export const DOH_RESOLVER = 'https://mozilla.cloudflare-dns.com/dns-query';