20ac42a5a3
* configure bitdrift Capture SDK * remove console log * use the new url * add patch to fix devtool interaction * update patches * fix patch * add BITDRIFT_API_KEY to .env.example
8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
import {init} from '@bitdrift/react-native'
|
|
|
|
const BITDRIFT_API_KEY = process.env.BITDRIFT_API_KEY
|
|
|
|
if (BITDRIFT_API_KEY) {
|
|
init(BITDRIFT_API_KEY, {url: 'https://api-bsky.bitdrift.io'})
|
|
}
|