How can i go back with @solidjs/router package ?

i want to go back in the history of the url with all the search parameters and more, is this posible i dnt se in the doc that method
2 Replies
apollo79
apollo799mo ago
I think you can do
const navigate = useNavigate();

// ...

navigate(-1);
const navigate = useNavigate();

// ...

navigate(-1);
But you are right it doesn't seem documented...
apollo79
apollo799mo ago
GitHub
solid-router/src/routing.ts at 79a2b577564772b8248aa75c5300dcb61e65...
A universal router for Solid inspired by Ember and React Router - solidjs/solid-router