dukizwe
dukizwe

Reputation: 422

Expo stuck on "Config syncing" while ejecting to expokit

While trying to eject a project from expokit, it won't finish and get's stuck at config syncing for over an hour.

enter image description here

This also happens when I create a new project with expo and then run expo run:android

Upvotes: 5

Views: 1462

Answers (2)

shubham kashyap
shubham kashyap

Reputation: 31

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.

Upvotes: 3

guhyeon
guhyeon

Reputation: 595

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

Upvotes: 4

Related Questions