Skip to content

Instantly share code, notes, and snippets.

@akellbl4
Last active June 9, 2021 06:09
Show Gist options
  • Save akellbl4/07a58167850eb9ec50f32a14b139cd2e to your computer and use it in GitHub Desktop.
Save akellbl4/07a58167850eb9ec50f32a14b139cd2e to your computer and use it in GitHub Desktop.
// Redirect
export function getServerSideProps() {
return {
redirect: {
destination: '/',
permanent: false,
},
}
}
// Page 404
export function getServerSideProps() {
return {
notFound: true,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment