Hello, I'm trying deploying to both vercel and azure my nextjs project.
Trying this document: https://vercel.com/docs/deployments/git/vercel-for-azure-pipelines
My agent computer is my local windows computer and I'm getting this issue:
##[error]Unable to locate executable file: 'vercel'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.
But I'm doing right I don't know what's wrong.
My azure-pipelines.yml file:
trigger:- main pool: name: Default steps:- task: vercel-deployment-task@1 inputs: vercelProjectId: MyProjectId vercelOrgId: MyOrgId vercelToken: MyVercelToken production: true vercelCWD: '/'Can you help me guys?