From ed9e156b4731177ce810bffc7ceab1b2c4219e90 Mon Sep 17 00:00:00 2001 From: mrskiro Date: Sun, 21 Jan 2024 00:10:49 +0900 Subject: [PATCH] fix: meta 5 --- src/pages/about/index.tsx | 1 - src/pages/index.tsx | 1 - src/pages/posts/[param]/index.tsx | 1 - 3 files changed, 3 deletions(-) diff --git a/src/pages/about/index.tsx b/src/pages/about/index.tsx index 64e60db..f7b90ab 100644 --- a/src/pages/about/index.tsx +++ b/src/pages/about/index.tsx @@ -17,7 +17,6 @@ export const getStaticProps: GetStaticProps = async () => { props: { aboutPageDetail, }, - revalidate: 10, } } diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 2964d4a..9a61738 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -37,7 +37,6 @@ export const getStaticProps: GetStaticProps = async () => { props: { posts, }, - revalidate: 1, } } diff --git a/src/pages/posts/[param]/index.tsx b/src/pages/posts/[param]/index.tsx index 546793a..52407db 100644 --- a/src/pages/posts/[param]/index.tsx +++ b/src/pages/posts/[param]/index.tsx @@ -44,7 +44,6 @@ export const getStaticProps: GetStaticProps = async ( props: { postDetail, }, - revalidate: 1, } }