We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0136d3 commit 72f9e39Copy full SHA for 72f9e39
1 file changed
packages/cli/src/user.ts
@@ -14,7 +14,7 @@ export interface UserConfig {
14
}
15
16
export const USER_CONFIG_PATH = path.join(os.homedir(), '.e2b', 'config.json') // TODO: Keep in Keychain
17
-export const DOCS_BASE = `https://${process.env.E2B_DOCS_DOMAIN || process.env.E2B_DOMAIN || 'e2b.dev'}/docs`
+export const DOCS_BASE = process.env.E2B_DOCS_BASE || `https://${process.env.E2B_DOMAIN || 'e2b.dev'}/docs`
18
19
export function getUserConfig(): UserConfig | null {
20
if (!fs.existsSync(USER_CONFIG_PATH)) return null
0 commit comments