typescript NextJS无法在构建时找到模块constants.js

0lvr5msh  于 2023-01-27  发布在  TypeScript
关注(0)|答案(2)|浏览(194)

我有这个错误时,运行next buildnext版本^10.2.3。我试图删除node_modules.next文件夹,并重新运行npm install && next build没有成功。

Error: Cannot find module 'next/dist/shared/lib/constants.js'
  type: 'Error',
  code: 'MODULE_NOT_FOUND',
  requireStack: [
    '.next/server/pages/_document.js',
    '/usr/local/lib/node_modules/next/dist/server/require.js',
    '/usr/local/lib/node_modules/next/dist/server/load-components.js',
    '/usr/local/lib/node_modules/next/dist/build/utils.js',
    '/usr/local/lib/node_modules/next/dist/build/worker.js',
    '/usr/local/lib/node_modules/next/dist/compiled/jest-worker/processChild.js'
  ]
9fkzdhlc

9fkzdhlc1#

从package.json中删除constants.js可以解决这个问题。

piv4azn7

piv4azn72#

尝试删除.next文件夹并重新运行。

相关问题