diff --git a/pages/query/[path].tsx b/pages/query/[path].tsx index 61f6bcd..f15985e 100644 --- a/pages/query/[path].tsx +++ b/pages/query/[path].tsx @@ -1,7 +1,7 @@ import { useRouter } from "next/router"; export function getStaticPaths() { - return { paths: [{ params: { path: "test" } }], fallback: true }; + return { paths: [{ params: { path: "test" } }], fallback: false }; } export function getStaticProps({ params }: { params: unknown }) {