W3cubDocs

/Astro

Invalid value returned by a getStaticPaths path.

InvalidGetStaticPathParam: Invalid params given to getStaticPaths path. Expected an object, got PARAM_TYPE

The params property in getStaticPaths’s return value (an array of objects) should also be an object.

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

See Also:

© 2021 Fred K. Schott
Licensed under the MIT License.
https://docs.astro.build/en/reference/errors/invalid-get-static-path-param/