更新 NextJS/playwrights nodejs 版本?
Updating NextJS/playwrights nodejs version?
由于 Playwright 的贬值 Node.js 版本,我在 Vercel 上的构建开始失败:
Error: Node.js version 12.x is deprecated. Deployments created on or
after 2022-08-09 will fail to build. Please set Node.js Version to
16.x in your Project Settings to use Node.js 16. This change is the result of a decision made by an upstream infrastructure provider
(AWS).
其次是:
error playwright@1.22.1: The engine "node" is incompatible with this
module. Expected version ">=14". Got "12.22.9" error Found
incompatible module.
有没有办法更新 Playwright 的内置 Node.js 版本?
问题是您在 Vercel 中的项目在构建应用程序时设置为 Node.js12,但由于 Playwright 要求节点 >=14 而失败。
您可以在 项目常规页面的 Node.js 版本 部分下增加 Vercel 项目中的 Node.js 版本设置.
有关详细信息,请参阅 Vercel 中的 Node.js Version。
由于 Playwright 的贬值 Node.js 版本,我在 Vercel 上的构建开始失败:
Error: Node.js version 12.x is deprecated. Deployments created on or after 2022-08-09 will fail to build. Please set Node.js Version to 16.x in your Project Settings to use Node.js 16. This change is the result of a decision made by an upstream infrastructure provider (AWS).
其次是:
error playwright@1.22.1: The engine "node" is incompatible with this module. Expected version ">=14". Got "12.22.9" error Found incompatible module.
有没有办法更新 Playwright 的内置 Node.js 版本?
问题是您在 Vercel 中的项目在构建应用程序时设置为 Node.js12,但由于 Playwright 要求节点 >=14 而失败。
您可以在 项目常规页面的 Node.js 版本 部分下增加 Vercel 项目中的 Node.js 版本设置.
有关详细信息,请参阅 Vercel 中的 Node.js Version。