Ir al contenido

Invalid value returned by a getStaticPaths path.

InvalidGetStaticPathParam: Parámetros inválidos proporcionados a la ruta getStaticPaths. Se esperaba un object, se obtuvo PARAM_TYPE

¿Qué salió mal?

La propiedad params retornado por getStaticPaths (en un array de objetos) también debe ser un objeto.

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

Ver también:

Contribuir Comunidad Patrocinador