Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 484 Bytes

gsp-redirect-during-prerender.mdx

File metadata and controls

15 lines (9 loc) · 484 Bytes
title
Redirect During getStaticProps Prerendering

Why This Error Occurred

The redirect value was returned from getStaticProps during prerendering which is invalid.

Possible Ways to Fix It

Remove any paths that result in a redirect from being prerendered in getStaticPaths and enable fallback: true to handle redirecting for these pages.

Useful Links