React Native/오류

[ERROR] "export 'viewproptypes' was not found in 'react-native-web/dist/index'

코코몹 2022. 7. 30. 12:47

"export 'viewproptypes' was not found in 'react-native-web/dist/index' 오류

react-native-modal라이브러리의 modal쓰는 과정에서 오류 발생

ViewPropTypes에 변경사항이 발생한 것이 원인으로 추측



해결방법

  1. package.json과 같은 디렉토리에 아래 내용의 fix.bat파일 추가
@echo off
echo 'Fixing ViewPropTypes issues'
REM Fix ViewPropTypes issues
ECHO export const ViewPropTypes = { style: null };>>"node_modules/react-native-web/dist/index.js"

  1. package.json의 script에 "postinstalll": "fix"를 추가

  1. 명령프롬프트에서 프로젝트의 루트디렉터리로 이동해 npm run postinsatll을 실행해 변경사항 적용

'React Native > 오류' 카테고리의 다른 글

Expo Developing Tools - Run in web browser 사용  (0) 2022.10.17