Facing code EWORKSPACESCONFIG issue while npm install

Viewed 3644

Below error, I am getting while doing npm install for react-native.

npm ERR! code EWORKSPACESCONFIG
npm ERR! workspaces config expects an Array
3 Answers

Didnt work for me too so I used yarn instead of npm and that worked

The root cause of this error is npm version. I tried many things but none of them worked.

Try to upgrade or downgrade npm version. Will fix this issue.

I erased the workspaces entry and used npm i --force @tailwindcss/typography and it seemed to solve it.

Related