···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';
0000000
···4647// which PDS to use for signup
48// ATTENTION: pds.rip is only for development, all accounts get deleted automatically after a week
49+const devPDS = 'https://pds.rip/';
50+const prodPDS = 'https://selfhosted.social/';
51+export const signUpPDS = dev ? devPDS : prodPDS;
52+53+// where to redirect after oauth login/signup, e.g. /oauth/callback
54+export const REDIRECT_PATH = '/oauth/callback';
55+56+export const DOH_RESOLVER = 'https://mozilla.cloudflare-dns.com/dns-query';