I've set up ignoreCommand in vercel.ts, but by adding logs to vercel.ts I can see that the file is only evaluated after vercel attempts to call the ignoreCommand, so it can never work out. I can workaround this by just setting ignoreCommand in the settings UI, but I would prefer my configs to be in code.
ignoreCommand in vercel.ts should be honored.
// vercel.tsimport { type VercelConfig } from '@vercel/config/v1'export const config: VercelConfig = { ignoreCommand: 'exit 0',}Using next.js