Salta ai contenuti
This is an unmaintained snapshot of the Astro v5 docs. View the latest docs.

Invalid value returned by getStaticPaths.

Questi contenuti non sono ancora disponibili nella tua lingua.

InvalidGetStaticPathsReturn: Invalid type returned by getStaticPaths. Expected an array, got RETURN_TYPE

getStaticPaths’s return value must be an array of objects.

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

See Also:

Contribuisci Comunità Sponsor