Nested Routes
Unanswered
Cuvier’s Dwarf Caiman posted this in #help-forum
Cuvier’s Dwarf CaimanOP
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
Cuvier’s Dwarf CaimanOP
i use useRouter btw
@Dutch maybe we need some code to explain
Cuvier’s Dwarf CaimanOP
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
@Cuvier’s Dwarf Caiman 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
Cuvier’s Dwarf CaimanOP
i use "use client" directives yet it still send a request
@Cuvier’s Dwarf Caiman 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 😄