Zum Inhalt springen
This is an unmaintained snapshot of the Astro v4 docs. View the latest docs.

Invalid entry inside getStaticPath's return value

Dieser Inhalt ist noch nicht in deiner Sprache verfügbar.

InvalidGetStaticPathsEntry: Invalid entry returned by getStaticPaths. Expected an object, got ENTRY_TYPE

getStaticPaths’s return value must be an array of objects. In most cases, this error happens because an array of array was returned. Using .flatMap() or a .flat() call may be useful.

pages/blog/[id].astro
export async function getStaticPaths() {
return [ // <-- Array
{ params: { slug: "blog" } }, // <-- Object
{ params: { slug: "about" } }
];
}

See Also:

Wirke mit

Worum geht es?

Community