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
As of right now, pre-rendering is no longer used. I am not sure if Universal makes much sense for the checklist, because the content currently lives on the client, meaning in the user's local storage. Prerending would improve the time to First Meaningful Paint but for this app it would also cause flickering when the client kicks in, because that's when data is pulled out of local storage and everything is replaced with the user's data. Since data lives in local storage we cannot transfer the state.
However, we could at least use Universal to pre-render an app-shell to show the above the fold content to the user for improved perceived startup performance. Angular Universal is already set up for static pre-rendering so we would need to also set up the app shell.
The text was updated successfully, but these errors were encountered:
As of right now, pre-rendering is no longer used. I am not sure if Universal makes much sense for the checklist, because the content currently lives on the client, meaning in the user's local storage. Prerending would improve the time to First Meaningful Paint but for this app it would also cause flickering when the client kicks in, because that's when data is pulled out of local storage and everything is replaced with the user's data. Since data lives in local storage we cannot transfer the state.
However, we could at least use Universal to pre-render an app-shell to show the above the fold content to the user for improved perceived startup performance. Angular Universal is already set up for static pre-rendering so we would need to also set up the app shell.
The text was updated successfully, but these errors were encountered: