You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
I have a page where the getInitialProps is a bit slow. I tried to make it even slower, but the loading indicator still didn't show up. The delayed-enter example does work, but it doesn't do its "loading" in getInitialProps.
Would it be possible for someone here to add a working example of a loader showing up while getInitialProps is "loading" something (on the client of course)?
The text was updated successfully, but these errors were encountered:
Based on my understanding of Next, I don't think that's possible to make work. Next will wait for getInitialProps to complete before switching to the new page, so we can't actually detect the transition until the data finishes loading.
I have a page where the
getInitialProps
is a bit slow. I tried to make it even slower, but the loading indicator still didn't show up. Thedelayed-enter
example does work, but it doesn't do its "loading" ingetInitialProps
.Would it be possible for someone here to add a working example of a loader showing up while
getInitialProps
is "loading" something (on the client of course)?The text was updated successfully, but these errors were encountered: