aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2022-09-23 19:47:38 +0300
committereug-vs <eugene@eug-vs.xyz>2022-09-23 19:47:38 +0300
commit8641a3e8ecc06d7bc0b75a71b2b9ec51f7f24c05 (patch)
tree90eda1707b6163afe41ecf0d81a4bdf331bea01b
parentca81ea6433af1c5231ea52b4692812e2f39aeb09 (diff)
downloadbenzin-next-8641a3e8ecc06d7bc0b75a71b2b9ec51f7f24c05.tar.gz
feat: implement ISR
-rw-r--r--src/pages/[...path].tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/[...path].tsx b/src/pages/[...path].tsx
index ff03d1c..75dd96d 100644
--- a/src/pages/[...path].tsx
+++ b/src/pages/[...path].tsx
@@ -39,7 +39,7 @@ export const getStaticPaths = async () => {
.map(path => ({ params: { path } }));
return {
paths,
- fallback: false,
+ fallback: 'blocking',
}
}