next.js `Prerender`的`initialStatus`参数必须是自然数

tjrkku2a  于 2023-06-29  发布在  其他
关注(0)|答案(1)|浏览(111)

Prerender的参数initialStatus必须是自然数。

我试图在vercel上部署我的next.js 13应用程序,然后我得到这个错误。如果有人知道任何关于这个问题,那么请在下面分享您的答案

***在vercel上部署时的日志:***Log screenshot

我的next.config.js文件看起来像这样:

/** @type {import('next').NextConfig} */
const nextConfig = {
  experimental: {
    appDir: true,
  },
  images: {
    domains: ["res.cloudinary.com"],
  },
};

module.exports = nextConfig;
bqjvbblv

bqjvbblv1#

我也面临同样的问题在我例子中,我删除了路由处理程序中的try/catch语句,然后我的项目是在Vercel上构建的。

相关问题