feat: use fallback with loading

This commit is contained in:
iCrawl
2022-08-23 01:43:10 +02:00
parent 360936140b
commit 2ecb862e76
7 changed files with 91 additions and 55 deletions

View File

@@ -121,7 +121,7 @@ export const getStaticPaths: GetStaticPaths = async () => {
return {
paths: pkgs,
fallback: 'blocking',
fallback: true,
};
};

View File

@@ -30,7 +30,7 @@ export const getStaticPaths: GetStaticPaths = () => {
return {
paths: versions,
fallback: 'blocking',
fallback: false,
};
};