'Expo stuck on "Config syncing" while ejecting to expokit
Solution 1:[1]
I solved below step.
remove files for new feeling.
rm -rf android
rm -rf node_modules
rm yarn.lock
rm package-lock.json
update node. I used nvm.
npm uninstall -g sharp-cli
yarn install
Solution 2:[2]
Perhaps your copy of sharp-cli is corrupted?
npm uninstall -g sharp-cli && npm install -g sharp-cli
If the problem persists you can just uninstall sharp-cli and it will skip this step.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | guhyeon |
Solution 2 | shubham kashyap |