Paths can now be added after site is built

This commit is contained in:
DrMint 2022-03-29 21:51:50 +02:00
parent 61d5363242
commit 4dd1782389
5 changed files with 5 additions and 5 deletions
src/pages
contents/[slug]
library/[slug]
news

@ -163,6 +163,6 @@ export async function getStaticPaths(
}); });
return { return {
paths, paths,
fallback: false, fallback: "blocking",
}; };
} }

@ -276,7 +276,7 @@ export async function getStaticPaths(
}); });
return { return {
paths, paths,
fallback: false, fallback: "blocking",
}; };
} }

@ -445,7 +445,7 @@ export async function getStaticPaths(
}); });
return { return {
paths, paths,
fallback: false, fallback: "blocking",
}; };
} }

@ -175,6 +175,6 @@ export async function getStaticPaths(
}); });
return { return {
paths, paths,
fallback: false, fallback: "blocking",
}; };
} }

@ -176,6 +176,6 @@ export async function getStaticPaths(
}); });
return { return {
paths, paths,
fallback: false, fallback: "blocking",
}; };
} }