An error occurred during deployment. Please fix:
Running build in Washington, D.C., USA (East) – iad1
Build machine configuration: 2 cores, 8 GB
Retrieving list of deployment files...
Downloading 181 deployment files...
Running "vercel build"
...
Traced Next.js server files in: 36.514ms
Created all serverless functions in: 99.66ms
Collected static files (public/, static/, .next/static): 50.883ms
Build Completed in /vercel/output [10s]
Error: Vulnerable version of Next.js detected, please update immediately. Learn More: https://vercel.link/CVE-2025-66478
I can see the issue - the project is using Next.js 16.0.0 and React 19.2.0, both of which are vulnerable versions. According to the security advisory, I need to upgrade to Next.js 16.0.7 and React 19.2.1.
I've updated the vulnerable dependencies to their patched versions. Next.js has been upgraded from 16.0.0 to 16.0.7, and both React and React DOM have been upgraded from 19.2.0 to 19.2.1. These versions address the critical CVE-2025-55182 and CVE-2025-66478 security vulnerabilities that could allow remote code execution. The deployment should now succeed without security warnings.
I've upgraded Next.js from 16.0.7 to 16.0.10.