Skip to content

Instantly share code, notes, and snippets.

@paulphys
Created March 23, 2021 00:16
Show Gist options
  • Save paulphys/c188394103ee8209247644997b3042e4 to your computer and use it in GitHub Desktop.
Save paulphys/c188394103ee8209247644997b3042e4 to your computer and use it in GitHub Desktop.
Next.js Typescript 404 Redirect
import { useEffect } from "react"
import { useRouter } from "next/router"
export default function Custom404() {
const router = useRouter()
useEffect(() => {
router.replace("/")
})
return null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment