Skip to content

Commit 715e716

Browse files
committed
feat: isr fallback blocking
1 parent 45893cc commit 715e716

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/webapp/pages/isr/[id]/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const TestPage = ({ id, initialData }: Props): ReactElement => {
4949
export default TestPage;
5050

5151
export async function getStaticPaths(): Promise<GetStaticPathsResult> {
52-
return { paths: [], fallback: true };
52+
return { paths: [], fallback: 'blocking' };
5353
}
5454

5555
export async function getStaticProps({

packages/webapp/pages/posts/[id]/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ PostPage.layoutProps = {
182182
export default PostPage;
183183

184184
export async function getStaticPaths(): Promise<GetStaticPathsResult> {
185-
return { paths: [], fallback: true };
185+
return { paths: [], fallback: 'blocking' };
186186
}
187187

188188
export async function getStaticProps({

0 commit comments

Comments
 (0)