1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

using fallback: true on node pages

This commit is contained in:
Fedor Katurov 2022-09-14 16:41:34 +07:00
parent f8bdd1a47a
commit 2f8b5599b2

View file

@ -50,7 +50,7 @@ export const getStaticPaths = async () => {
return { return {
paths: recentIDs.map((id) => ({ params: { id } })), paths: recentIDs.map((id) => ({ params: { id } })),
fallback: 'blocking', fallback: true,
}; };
}; };