the fallback property causes issue with static page rendering in vercel

This commit is contained in:
Frank
2023-10-02 22:16:41 -06:00
parent 5a7c61a356
commit fe876bfc20
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ export const getStaticPaths = async () => {
slug: page.slug,
},
})),
fallback: true,
fallback: false,
};
};

View File

@@ -15,7 +15,7 @@ export const getStaticPaths = async () => {
slug: post.slug,
},
})),
fallback: true,
fallback: false,
};
};