Nested Routes
Unanswered
Cuban Crocodile posted this in #help-forum
Cuban CrocodileOP
Hello, i have problem with this everytime I navigate different routes of my page, it send always a request. How to prevent this because it delays navigation response
8 Replies
Cuban CrocodileOP
i use useRouter btw
@Dutch maybe we need some code to explain
Cuban CrocodileOP
in my (auth)/home where basic user resides, using my sidebar for navigating for different routes it always send request to server before loading my page content. I want only to use nextjs as full client side no server
@Cuban Crocodile in my (auth)/home where basic user resides, using my sidebar for navigating for different routes it always send request to server before loading my page content. I want only to use nextjs as full client side no server
Dutch
maybe problem is that client side thing, cuz server side and client side are different based on routing
Cuban CrocodileOP
i use "use client" directives yet it still send a request
@Cuban Crocodile i use "use client" directives yet it still send a request
Dutch
i mean CSR and SSR and different things
to get rid of that behaviour we re using SSR first, CSR as need approach
you are overriding next when yo do this 😄