Our SvelteKit web app package.json (located at packages/webapp in a monorepo) contains the following:
"engines": { "node": "18.x"},All of a sudden two days ago, builds started to fail with the following error:
Error: Found invalid Node.js Version: "18.x". Please set "engines": { "node": "22.x" } in your `package.json` file to use Node.js 22.Our Vercel project settings also specify Node.js 18, although that's irrelevant since the value in package.json takes precedence. We also have a root-level package.json which specifies the following:
"engines": { "node": ">=18", "pnpm": "9.4.0 || >=9.7.0" },I expect this to be irrelevant as well since the root directory for the webapp project in Vercel is set to packages/webapp.
I also have an open support case #311491, but there's been radio silence for the last 15 hours, hence I'm posting here to see if the community can help.
