aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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',
}
}