Created
June 13, 2021 18:11
-
-
Save jaydson/3d49cdac3e21b8b3d784fc263869f52e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export async function getStaticPaths() { | |
return { | |
paths: [ | |
{ params: { ... } } // See the "paths" section below | |
], | |
fallback: true or false // See the "fallback" section below | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment