Today I deployed a barebones Next.js 15.2.0 app to Vercel and found this warning message in the logs:
Ignored build scripts: sharp.
Run "pnpm approve-builds" to pick which dependencies should be allowed
to run scripts.
Ideally I don’t want to get any warning messages during build and deployment.
And from memory, I wasn’t getting this warning message in the past.
Apparently, “this warning is related to Vercel’s security feature that prevents potentially risky build scripts from running automatically during deployment.”
How do you deal with this warning message in your builds? How can I make it go away?
@behrangsa If you have access to the terminal environment for your project (locally), do what the log suggests and run pnpm approve-builds.
Doing so should update your pnpm-lock.yaml file (make sure you are committing this) to tell pnpm to allow builds for the dependencies you approve automatically. Commit the changed lock file and it should work remotely too.