Error: Page "..." is missing param "..." in "generateStaticParams()"
Unanswered
Sloth bear posted this in #help-forum
Sloth bearOP
I am trying to build using Github Pages and export now with Next 14, where this problem persist even though I am using "generateStaticParams"
jsx
export async function generateStaticParams() {
return allComponents.map((component) => ({
slug: component.url_path,
}))
}