Yossi
Yossi

Reputation: 6027

metro bundler error: ::ffff:127.0.0.1 - - [DATE] "GET <class-module-name" HTTP/1.1" 404 208 "-" "okhttp/3.12.1"

Update:

The question: long story... I will try to make it short:

::ffff:127.0.0.1 - - [18/Oct/2020:09:21:04 +0000] "GET <class-module-name"> <HTTP/1.1" 404 208 "-" "okhttp/3.12.1"

(I have read all the relevant github and stack overflow issues/questions mentioning a similar error. None solved my problem).

Upvotes: 0

Views: 198

Answers (1)

Ken Lee
Ken Lee

Reputation: 8043

Since you have upgraded RN, and then downgraded back, and then copied over files from different versions/branches, I would strongly recommend you to clear the cache when compiling:

To clear your cache:

react-native start --reset-cache

If you are using expo-cli, then use:

expo start -c

Upvotes: 2

Related Questions