
I have hosted an next js application in vercel. At some point, the npm dependencies doesn’t worked properly with npm install
It got error as Vercel deployment build failed with command npm install exited with 1
I have used the command npm install --force
in my local box. I was checking how to achieve the same in my vercel deployment as well.
After sometime found these settings in vercel where we can can override the default Install command and provide our custom command.
I have override the settings and gave my custom command npm install --force
in the Build & Development Settings.
The setting present under Project → Settings → General → Build & Development Settings.
Happy Coding!