diff --git a/pages/search/[keyword]/index.js b/pages/search/[keyword]/index.js index 5985d7f8..b62ef8a9 100644 --- a/pages/search/[keyword]/index.js +++ b/pages/search/[keyword]/index.js @@ -53,7 +53,7 @@ export async function getStaticProps({ params: { keyword }, locale }) { export async function getStaticPaths() { return { - paths: [{ params: { keyword: BLOG.TITLE } }], + paths: [{ params: { keyword: 'NotionNext' } }], fallback: true } }