Skip to content

Commit 23999c9

Browse files
committed
move keys to env
1 parent 04a6055 commit 23999c9

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/config/index.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ import {
2525
import { CardPropsType } from 'src/types'
2626

2727
// Keys
28-
export const ANALYTICS_ENDPOINT = 'https://api.hackertab.dev/analytics'
29-
export const ANALYTICS_SDK_KEY = '9662c93f91473ba6e96711b22e0a367d'
28+
export const ANALYTICS_ENDPOINT = process.env.REACT_APP_AMPLITUDE_URL as string
29+
export const ANALYTICS_SDK_KEY = process.env.REACT_APP_AMPLITUDE_KEY as string
30+
export const SENTRY_DSN = process.env.REACT_APP_SENTRY_DSN as string
3031
export const LS_ANALYTICS_ID_KEY = 'hackerTabAnalyticsId'
3132
// Meta
3233
export const name = 'Hackertab.dev'

0 commit comments

Comments
 (0)