rsnext/errors/gsp-redirect-during-prerender.md
JJ Kasper bc80fb4fb2
Add handling for redirects from getStaticProps/getServerSideProps (#16642)
Co-authored-by: Tim Neutkens <timneutkens@me.com>
2020-09-08 09:23:21 +02:00

493 B

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.