In my personal website
- I Fetch markdown files from this account using Dev.To Rest API
- Pre render the pages on my personal website ( Astro )
Everytime during the building process ( vercel/astro ) this error comes in.
This is usually because the request failed.
I tried adding a 1 second delay using
// 1 Sec Delay
await new Promise((res, rej) => {
setTimeout(() => {
res("");
}, 1000);
});
and it worked!
Conclusion:
Maybe adding a delay will sometimes solve a failed request for SSG pages
Top comments (0)