目前我的NextJS应用程序有一些问题。
我得到下面的错误。这真的很奇怪,因为我的代码运行完美,没有错误。
import { useRouter } from 'next/router';
// Cannot find module 'next/router' or its corresponding type declarations.
然而,我在IDE中得到了上面的错误,这个错误停止了我的turbo build和yarn build命令的运行,导致我无法推向生产环境。
我已经重新启动我的ts服务器,卸载下一个,更新到最新版本,并运行yarn再次安装一切。
我在GitHub上做了一个示例仓库。https://github.com/MonkeeMan1/test
这将发生在我的所有下一个导入中。Cannot find module 'next/router' or its corresponding type declarations.ts(2307)
Cannot find module 'next/link' or its corresponding type declarations.ts(2307)
Cannot find module 'next/image' or its corresponding type declarations.ts(2307)
Package.json https://hatebin.com/ylujtdhtht
我尝试使用moduleResolution node
和node16
node
导致我的本地包cachetesting
找不到,所以无法导入。而node16
导致nextjs导入错误。
1条答案
按热度按时间vsikbqxv1#
问题出在你的
tsconfig.json
上。Next/React TS项目的配置不正确。替换为=〉https://github.com/vercel/next.js/blob/canary/examples/hello-world/tsconfig.json
==解决方案==
阅读了你的评论后,我明白你想做得更好。
下面是我如何让它工作的。
第一步:修复
nextjs.json
的路径apps/web/tsconfig.json
第二步:修复
nextjs.json
中的module
和moduleResolution
packages/tsconfig/nextjs.json
第三步:修复
cache: *
匹配包名apps/web/package.json
第四步:将main添加到
package.json
中缓存packages/cache/package.json
不知道你是否看过this link,但这有助于我调试