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 Mar 15, 2018. It is now read-only.
This setup nicely loads the entries query of the outer container on the server side, but the entry query of the inner route only loads client side, is there a way to do this completely on the backend?
The text was updated successfully, but these errors were encountered:
@nickclaw Does entries return a Promise? It should loop through the entries with an index, and actually return Promise.all(entries.map(entry => EntryContainer.getQuery("entry", entry)));. This is a requirement for server-side rendering to render the full page.
I'm using react-router, and I currently have it set up like this.
This setup nicely loads the
entries
query of the outer container on the server side, but theentry
query of the inner route only loads client side, is there a way to do this completely on the backend?The text was updated successfully, but these errors were encountered: