reactjs 我的项目中没有安装next-auth(Nextjs、React)

xmq68pz9  于 2022-12-26  发布在  React
关注(0)|答案(1)|浏览(166)

我在react项目中为我的nextjs使用yarn create next-app。但是我的项目中没有安装next-auth。我的节点版本是LTS 16.15.1,yarn版本是1.22.18,npm版本是8.9.0。我尝试了nodejs的最新版本和旧版本,但是我一次又一次地得到这个错误。请解决我的问题如何在我的项目中安装next-auth。

yarn add v1.22.18
   warning ../../../package.json: No license field
   [1/4] Resolving packages...
   [2/4] Fetching packages...
   error next-auth@4.3.4: The engine "node" is incompatible with this module. 
   Expected version "^12.19.0 || ^14.15.0 || ^16.13.0". Got "18.2.0"
   error Found incompatible module.
   info Visit https://yarnpkg.com/en/docs/cli/add for documentation about this 
   command.
y0u0uwnf

y0u0uwnf1#

从@pfcodes获得:添加--ignore-engines标志用于安装和升级操作,以暂时解决此问题。此处

相关问题