이런저런 IT 이야기
React-Native iOS : main.jsbundle 이슈 본문
반응형
iOS 프로젝트에 main.jsbundle 파일이 생기지 않아서 발생하는 오류를 해결하고자 합니다.
순서는 다음과 같습니다.
1. 프로젝트 안에 package.json 파일을 엽니다.
2. scripts안에 아래 문구를 넣습니다.
"build:ios": "react-native bundle --entry-file='index.js' --bundle-output='./ios/main.jsbundle' --dev=false --platform='ios'"
3. 아래 명령어를 실행합니다.
npm run build:ios
4. 파일이 생성됩니다.
5. XCode상에서 파일을 추가 합니다.
반응형
'React Native' 카테고리의 다른 글
MacOS Big Sur 업데이트후 RN Android 빌드 에러 (MacOS) (1) | 2020.11.16 |
---|---|
React Native Apple 로그인 연동 (0) | 2020.08.07 |
ReactNative 화면 전환시 데이터 주고 받기 (0) | 2020.06.20 |