Use fallback: 'blocking'

This commit is contained in:
Sam Carlton 2021-09-11 15:34:24 -05:00
parent 2d5c88ed2c
commit 55c96dbb71

View file

@ -16,7 +16,10 @@ function HomebrewFormula({ payload }) {
}
export async function getStaticPaths() {
return { paths: [], fallback: true }
return {
paths: [],
fallback: 'blocking'
}
}
export async function getStaticProps({ params }) {