**关闭。**这个问题是not reproducible or was caused by typos。目前不接受答复。
此问题是由打印错误或无法再重现的问题引起的。虽然类似的问题可能是on-topic在这里,这一个是解决的方式不太可能帮助未来的读者。
2天前关闭。
Improve this question
我有一个问题与Next.js 13和contentlayer,当生成.contentlayer文件夹,没有路径的帖子../public/etc给予下面的错误:
error message image
我已经研究了contentlayer问题,Next.js 13,还没有发现任何东西。我尝试在contentlayer.config.ts中添加一些配置,但是没有任何效果。
1条答案
按热度按时间mpgws1up1#
我发现了错误,它在contentlayer中的图像类型中:
是这样的:
image: { type: 'image', required: true }
我把它改成了这个:
image: { type: 'string', required: true }