Hi!
I'm currently trying to convert a Next.js project from using npm to pnpm. Locally on my machine everything works as expected. However, trying to deploy to Vercel, fails.
Vercel is supposed to automatically detect the package manager. It correctly detects that I'm using pnpm v9 or v10 due to the lockfile. It chose v9 due to the age of my project. Weird, but Ok. It recommends to set this environment variable to make use of Corepack and the packageManger field from my package.json.

I did set the environment variable and have the packageManager field set. See: https://github.com/simonknittel/sinister-incorporated/pull/1254/files#diff-012b982f97a0d326aeec58dd3b789484b05a944d609afe1b8ed5e299fc485f61R110
However, it complains about not detecting that field:

Here you can see all changes in the pull request for that respective preview deployment: https://github.com/simonknittel/sinister-incorporated/pull/1254/files
Am I missing something?





