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, } }