Next.js Discord

Discord Forum

Change url is too slow

Unanswered
Common carp posted this in #help-forum
Open in Discord
Common carpOP
Hi, I'm dealing with some problem. when I change the URL, The url is take alot of time to be rendered the new page.

3 Replies

dev mode then it's expectedly slow, nextjs needs to compile + fetch the data + render the page on demand, i.e. when you click the link
prod mode then likely it is a dynamically rendered page (so data fetching takes place at request time), and your data fetching logic is slow