0
0
JRJose Romero
nextstaticcreateβ’β’β’
NextJS Javascript 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
Filename pattern: *pages/*.jsx
export async function getStaticPaths() {
return {
}
}