我正在使用yup和react-hook-form作为我的一个模态,一切正常,但是当我刷新页面时,应用程序崩溃,我看到这个错误:
Error: Package subpath './yup/dist/yup' is not defined by "exports" in /Users/rips/Desktop/myapp-next rules/node_modules/@hookform/resolvers/package.json
This error happened while generating the page. Any console logs will be displayed in the terminal window.
这些是我的进口货
import { yupResolver } from "@hookform/resolvers/yup/dist/yup";
import * as yup from "yup";
有什么问题吗?
2条答案
按热度按时间wlsrxk511#
尝试降级节点版本。
1.首先从here.安装NVM
1.然后安装16.15.1(当前版本为18.5)
1.然后使用nvm use 16.15.1,然后尝试构建项目。
svgewumm2#
升级“@hookform/resolvers”:“2.8.8”它将修复该问题