How to clear react-native cache?

后端 未结 13 2154
傲寒
傲寒 2020-12-02 19:49

In react-native development, there are multiple caches used when the app is built:

  1. React-native packager cache
  2. Emulator cache
  3. Java side cache
13条回答
  •  独厮守ぢ
    2020-12-02 20:44

    This is what works for me:

    watchman watch-del-all && rm -f yarn.lock && rm -rf node_modules && yarn && yarn start --reset-cache
    

提交回复
热议问题