As I was attempting to push a React/Vite deployment in Vercel today, I got this error:
Build Failed
Error: It's not possible to provide `stdio` in combination with one of `stdin`, `stdout`, `stderr`
22:47:31.865
at K$e (/var/task/sandbox.js:358:500)
22:47:31.866
at wze (/var/task/sandbox.js:358:9579)
22:47:31.866
at r7 (/var/task/sandbox.js:358:9819)
22:47:31.866
at ch.exports.command (/var/task/sandbox.js:358:11417)
22:47:31.866
at /var/task/sandbox.js:433:1219
22:47:31.866
at async iSr (/var/task/sandbox.js:433:528)
22:47:31.867
at async zxr (/var/task/sandbox.js:431:5834)
22:47:31.867
at async Promise.all (index 0)
22:47:31.867
at async uJe (/var/task/sandbox.js:431:4467)
22:47:31.867
at async fSr (/var/task/sandbox.js:434:2334)
It is very strange as this deployment contained very minor changes to my existing app. My last deployment was yesterday and I have faced no problems at all.
I have a turborepo (monorepo) that contains two React/Vite applications. Whenever I try to push any changes to either apps, the build fails almost immediately (within 1-3 seconds) with the same error.
Note: I am on the hobby plan so I am unable to contact Vercel’s support
How can I diagnose and fix this issue?
Any help would be greatly appreciated!