From 5de84b485f43d14991ca2069bc21375b8d5d9948 Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Thu, 11 Jun 2020 21:59:57 +0900 Subject: [PATCH] fix build error --- pages/query/[path].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }) {