-
react native node 서버가 안 뜬다면??? error Invalid regular expression수상한 프로그래머/React Native 2023. 3. 25. 01:32반응형
error Invalid regular expression: /(.*\\__fixtures__\\.*|node_modules[\\\]react[\\\]dist[\\\].*|website\\node_modules\\.*|heapCapture\\bundle\.js|.*\\__tests__\\.*)$/: Unterminated character class. Run CLI with --verbose flag for more details.
이렇게 에러가 나오면
해당 폴더의 \node_modules\metro-config\src\defaults\blacklist.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__\/.*/
];성공 ^0^
반응형'수상한 프로그래머 > React Native' 카테고리의 다른 글
Cause: error=86, Bad CPU type in executable 에러 발생시 (0) 2023.04.05 com.facebook.react.commot.JavascriptException: Invalid or unexpected token (0) 2023.03.25 androidX 관련 오류시 대처사항 총집합 (0) 2023.03.10 Error: cannot find symbol import com.google.android.gms.ads.InterstitialAd (0) 2023.03.09 package com.facebook.react.bridge 를 못찾을때 (0) 2023.03.09 댓글