답변: 'react-native start' 오류 해결 방법 답변 re: 'react-native start' 오류 해결 방법
3712 단어 nodeprogrammingmobilejavascript
answer re: 'react-native start' 오류 해결 방법
19년 9월 26일
350
오늘 처음으로 비슷한 오류가 발생했습니다. \node_modules\metro-config\src\defaults\blacklist.js
에 표시되며 변경해야 하는 잘못된 정규식이 있습니다. sharedBlacklist
아래의 첫 번째 표현식을 다음에서 변경했습니다.
var sharedBlacklist = [
/node_modules[/\\]react[/\\]dist[/\\].*/,
/website\/node_modules\/.*/,
/heapCapture\/bundle\.js/,
/.*\/__tests__\/.*/
];
에게:
var sharedBlacklist = [
/node_modules[\/\\]react[\/\\]dist[\/\\].*/,
/website\/node_modules\/.*/,
/heapCapture\/bundle\.js/,
…
Open Full Answer
오늘 처음으로 비슷한 오류가 발생했습니다.\node_modules\metro-config\src\defaults\blacklist.js에 표시되며 변경해야 하는 잘못된 정규식이 있습니다. SharedBlacklist 아래의 첫 번째 표현식을 다음에서 변경했습니다.
var sharedBlacklist = [
/node_modules[/\\]react[/\\]dist[/\\].*/,
/website\/node_modules\/.*/,
/heapCapture\/bundle\.js/,
/.*\/__tests__\/.*/
];
에게:
var sharedBlacklist = [ /node_modules[\/\\]react[\/\\]dist[\/\\].*/,
/website\/node_modules\/.*/,
/heapCapture\/bundle\.js/,
/.*\/__tests__\/.*/
];
https://stackoverflow.com/a/58122821/13161180에서 복사
크레딧은 Clem에게 전달됩니다.
Reference
이 문제에 관하여(답변: 'react-native start' 오류 해결 방법 답변 re: 'react-native start' 오류 해결 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/bilalmohib/answer-how-to-resolve-the-error-on-react-native-start-1iga
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
var sharedBlacklist = [
/node_modules[/\\]react[/\\]dist[/\\].*/,
/website\/node_modules\/.*/,
/heapCapture\/bundle\.js/,
/.*\/__tests__\/.*/
];
var sharedBlacklist = [
/node_modules[\/\\]react[\/\\]dist[\/\\].*/,
/website\/node_modules\/.*/,
/heapCapture\/bundle\.js/,
var sharedBlacklist = [
/node_modules[/\\]react[/\\]dist[/\\].*/,
/website\/node_modules\/.*/,
/heapCapture\/bundle\.js/,
/.*\/__tests__\/.*/
];
var sharedBlacklist = [ /node_modules[\/\\]react[\/\\]dist[\/\\].*/,
/website\/node_modules\/.*/,
/heapCapture\/bundle\.js/,
/.*\/__tests__\/.*/
];
Reference
이 문제에 관하여(답변: 'react-native start' 오류 해결 방법 답변 re: 'react-native start' 오류 해결 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/bilalmohib/answer-how-to-resolve-the-error-on-react-native-start-1iga텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)