rsnext/errors/invalid-redirect-gssp.mdx
Delba de Oliveira 44d1a1cb15
docs: Migrate error messages to MDX and App Router. (#52038)
This PR is part of a larger effort to migrate error messages to MDX and
use App Router: https://github.com/vercel/front/pull/23459
2023-07-05 06:11:16 -07:00

34 lines
757 B
Text

---
title: 'Invalid Redirect `getStaticProps` / `getServerSideProps`'
---
## Why This Error Occurred
The `redirect` value returned from your `getStaticProps` or `getServerSideProps` function had invalid values.
## Possible Ways to Fix It
Make sure you return the proper values for the `redirect` value.
```js filename="pages/blog/[slug].js"
export const getStaticProps = ({ params }) => {
if (params.slug === 'deleted-post') {
return {
redirect: {
permanent: true, // or false
destination: '/some-location',
},
}
}
return {
props: {},
}
}
export default function Page(props) {}
```
## Useful Links
- [Data Fetching Documentation](/docs/pages/building-your-application/data-fetching/get-static-props)