My web application manages backend routes with Next.js. The problem is that I want to use react-router-dom in one section. For example, working with Laravel and React, I set my route like this:
Route::get('/reactPage/*' ...)
and then use client route with React. But I don't know how handle this with Next.js.
I want the user to click a link after seeing a page with a link. If the user clicks that link, react-router-dom should handle route and not send request to server.