From 2f8b5599b2fc8cc81f52d604bfa4c35b0ceaa57d Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Wed, 14 Sep 2022 16:41:34 +0700 Subject: [PATCH] using fallback: true on node pages --- src/pages/node/[id].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/node/[id].tsx b/src/pages/node/[id].tsx index c6fa89dd..e6fc9723 100644 --- a/src/pages/node/[id].tsx +++ b/src/pages/node/[id].tsx @@ -50,7 +50,7 @@ export const getStaticPaths = async () => { return { paths: recentIDs.map((id) => ({ params: { id } })), - fallback: 'blocking', + fallback: true, }; };