diff options
Diffstat (limited to 'src/env')
-rw-r--r-- | src/env/common.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/env/common.ts b/src/env/common.ts index fbf477726..69451fd7e 100644 --- a/src/env/common.ts +++ b/src/env/common.ts @@ -63,6 +63,12 @@ export const LOG_LEVEL = (process.env.EXPO_PUBLIC_LOG_LEVEL || 'info') as export const LOG_DEBUG: string = process.env.EXPO_PUBLIC_LOG_DEBUG || '' /** + * The DID of the Bluesky appview to proxy to + */ +export const BLUESKY_PROXY_DID: Did = + process.env.EXPO_PUBLIC_BLUESKY_PROXY_DID || 'did:web:api.bsky.app' + +/** * The DID of the chat service to proxy to */ export const CHAT_PROXY_DID: Did = |