इसे छोड़कर कंटेंट पर जाएं
This is an unmaintained snapshot of the Astro v4 docs. View the latest docs.

Missing params property on getStaticPaths route.

यह कंटेंट अभी तक आपकी भाषा में उपलब्ध नहीं है।

GetStaticPathsExpectedParams: Missing or empty required params property on getStaticPaths route.

Every route specified by getStaticPaths require a params property specifying the path parameters needed to match the route.

For instance, the following code:

pages/blog/[id].astro
---
export async function getStaticPaths() {
return [
{ params: { id: '1' } }
];
}
---

Will create the following route: site.com/blog/1.

See Also:

योगदान करें

आपके दिमाग में क्या है?

समुदाय