Not allow user click to back to before page through button of navigator with React

Rafael Borges - Jun 27 - - Dev Community
import { useNavigate } from 'react-router-dom'

const navigate = useNavigate()

navigate('/sign-in', { replace: true })

Enter fullscreen mode Exit fullscreen mode

Using replace true, the browser not allow back to back page after to navigate to sign-in route, how the example.

. . . .