由于“导出在以下路径上遇到错误”,下一个 JS 构建失败

时间:2020-12-23 14:06:09

标签: reactjs next.js vercel

当我将下一个 js 站点部署到 vercel 时遇到此构建错误

15:02:38    > Build error occurred
15:02:38    Error: Export encountered errors on following paths:
15:02:38        /about/undefined
15:02:38        at exportApp (/vercel/workpath0/node_modules/next/dist/export/index.js:30:1103)
15:02:38        at processTicksAndRejections (internal/process/task_queues.js:97:5)
15:02:38        at async /vercel/workpath0/node_modules/next/dist/build/index.js:39:69
15:02:38        at async /vercel/workpath0/node_modules/next/dist/build/tracer.js:1:525

我的网站没有称为 about 的页面,所以我真的不知道这个错误指的是什么。我尽可能多地检查以找到可靠的答案,但不能。任何帮助表示赞赏!

4 个答案:

答案 0 :(得分:4)

我发现有一个对象没有生成页面所需的属性。一旦我删除它,一切都很好

答案 1 :(得分:1)

我也遇到了这个错误。我发现我正在使用一个没有道具的组件。 删除它或传递道具将解决问题

答案 2 :(得分:1)

像这样添加后备对我有用:

{fallback: false}

答案 3 :(得分:0)

通过输出以下日志解决了问题。 已记录所有页面。

export async function getStaticProps({ params: {slug} }) {
  // ↓add 
  console.log(`Building slug: ${slug}`)
}