I have newly installed accept-language npm module. After installation when I try to start the project I get below error
Error: Cannot find module '@kyleshockey/object-assign-deep'
How can I resolve this issue?
I have newly installed accept-language npm module. After installation when I try to start the project I get below error
Error: Cannot find module '@kyleshockey/object-assign-deep'
How can I resolve this issue?
@kyleshockey/object-assign-deep
is neither direct nor indirect dependency of accept-language
so it is a dependency (direct or not) of your app. And it didn't install correctly. Try to remove package-lock.json and run npm install
, or maybe better try yarn install