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;
1条答案
按热度按时间bqjvbblv1#
我也面临同样的问题在我例子中,我删除了路由处理程序中的try/catch语句,然后我的项目是在Vercel上构建的。