如何清除Windows上的所有react-native缓存,以及文件在哪里?

时间:2019-02-22 11:23:18

标签: react-native caching

我找到了以下文件夹:C:\ Users \\ AppData \ Local \ Temp \ metro-cache 我可以删除它吗? 还有另一个本地反应缓存文件夹吗?

1 个答案:

答案 0 :(得分:0)

您可以尝试使用以下命令从窗口清除npm打包程序的缓存。

del %appdata%\Temp\react-native-* & cd android & gradlew clean & cd .. & del node_modules/ & npm cache clean --force & npm install & npm start -- --reset-cache

Check here,

希望这对您有用:)