Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- camera access
- github 100mb
- github lfs
- ffi-napi
- device in use
- 이미지 데이터 타입
- animation
- dvh
- silent printing
- rolldown
- nextjs
- Failed to compiled
- Recoil
- custom printing
- react-native
- 티스토리 성능
- ELECTRON
- Git
- electron-packager
- Can't resolve
- github pdf
- camera permission
- adb connect
- react-native-dotenv
- adb pair
- html
- Each child in a list should have a unique "key" prop.
- augmentedDevice
- vercel git lfs
- npm package
Archives
- Today
- Total
Bleeding edge
react-native에서 .env (환경 변수 관리하기) 본문
react-native에서 환경변수를 관리하는 라이브러리는
1. react-native-config
2. react-native
두 가지가 있습니다.
react-native-config 같은 경우에는 초기 설정이 많이 있기 때문에, react-native-dotenv를 선택하였다.
1) install
npm i react-native-config
혹은
yarn add react-native-config
2) babel config
module.exports = {
//...
"presets": ["module:metro-react-native-babel-preset"],
"plugins": [
["module:react-native-dotenv", {
"moduleName": "@env",
"path": ".env",
"blacklist": null,
"whitelist": null,
"safe": true,
"allowUndefined": true
}]
]
//...
};
3) (ios인 경우) pod Install
//root 폴더에서 terminal
cd ios && pod install
4) .env파일 생성(root 폴더에 생성한다)
VARIABLE_KEY = VALUE
환경 변수 사용방법
import {VARIABLE_KEY} from '@env';
console.log(VARIABLE_KEY) // VALUE
'Javascript > React-Native' 카테고리의 다른 글
안드로이드 스튜디오 무선 디버깅 적용하기 (0) | 2024.03.29 |
---|---|
화면 전환이 되었을 때 상태 reset 시키기 (1) | 2024.03.27 |
[Toy Project]React Native로 카메라 앱을 만들자 - Camera (0) | 2023.09.12 |
[링크]Android vs iOS 디자인 차이 (0) | 2023.09.05 |
[링크] react-native typescript 세팅 (0) | 2023.09.05 |