0
0
JRJose Romero
nextcreatestaticβ’β’β’
Next TypeScript recipesSo your page paths that are pre-rendered depend on external data. To handle this, Next.js lets you export an async function called getStaticPaths from a dynamic page. This function gets called at build time and lets you specify which paths you want to pre-render.
Library: next
Shortcut: next.static.paths.create
export async function getStaticPaths() {
return {
}
}