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

View File

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

View File

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

View File

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

View File

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

View File

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