diff options
author | hailey <hailey@blueskyweb.xyz> | 2025-08-26 17:13:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-26 17:13:11 -0700 |
commit | a1ed59e0eeb03d1f587512a1e567ebc298d71b38 (patch) | |
tree | 4c0beabb5682153bb9fbf1e3b682201ddfcdb6ca /src/env/common.ts | |
parent | 39c6984c6edabcb432ef884e7d3b12ae51a2c09e (diff) | |
download | voidsky-a1ed59e0eeb03d1f587512a1e567ebc298d71b38.tar.zst |
use an env var for configurable proxy header (#8863)
Diffstat (limited to 'src/env/common.ts')
-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 = |