Is anyone seeing their build log?
Is anyone seeing their build log?
I’m trying to upload a project, it’s giving me an error and not showing the logs.
same happening here
This seems to be related:
https://www.vercel-status.com/incidents/xp5s28zds60n
Are you folks still seeing issues?
This issue still happening now, its too annoying , and im thinking to host the website in vps better.
How can we fix this issue ?
Hi Justwolvesinvestment,
If the dashboard build log panel is still stuck, I’d first check whether the logs exist outside the dashboard UI.
From a local terminal:
npm i -g vercel@latestvercel loginvercel inspect <deployment-url> --logs
If the deployment is still building, use:
vercel inspect <deployment-url> --logs --wait
A few things this separates:
CLI shows build logs -> dashboard UI/loading issueCLI shows only Ready status -> deployment may not have stored build logs, or you are inspecting the wrong deployment URLCLI shows queued/canceled -> there may be no build logs to display yet
Also make sure you are checking Build Logs, not Runtime Logs. Runtime Logs are for requests after deployment; they will not show the original npm run build failure.
If the CLI can fetch logs, use that to debug the build for now. If both the dashboard and CLI cannot show logs across multiple deployments/projects, then the useful info to share is the deployment URL, timestamp, browser, and whether vercel inspect <deployment-url> --logs returns anything.