오류 내용
If you are sure the module exists, try these steps:
1. Clear watchman watches: watchman watch-del-all
2. Delete node_modules and run yarn install
3. Reset Metro's cache: yarn start --reset-cache
4. Remove the cache: rm -rf /tmp/metro-*
해결방법
// 1 단계
$ npm cache clean --force
// 2 단계
$ rm -rf node_modules 로 node_modules 삭제 폴더로 이동하거나 디렉토리로 이동하여 수동으로 삭제하고 마우스 오른쪽 버튼을 클릭 한 다음>삭제를 클릭하십시오.
// 3 단계
npm install
// 4 단계
$ npm start
fontawesome-icon 사용시, 필요한 패키지 미설치 오류
오류 내용
Failed building JavaScript bundle.
Unable to resolve module react-native-svg from /node_modules/@fortawesome/react-native-fontawesome/dist/converter.js: react-native-svg could not be found within the project.
If you are sure the module exists, try these steps:
1. Clear watchman watches: watchman watch-del-all
2. Delete node_modules and run yarn install
3. Reset Metro's cache: yarn start --reset-cache
4. Remove the cache: rm -rf /tmp/metro-*
해결방법
// react-native-svg 설치 ( 해당 오류 패키지 )
expo install react-native-svg
반응형