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
If you reload on /discography?filter=albums, you will see the result of /discography and then see the result of /discography?filter=albums.
This behavior is due to the nature of SSG. When the page is being generated, it outputs the result when the URL filter is empty, and this is the response you will get every time you access the route of /discography.
When you hit the browser reload button, the server serves the empty filter HTML. Then JS kicks in (re-hydrate) and updates the result with the filter-applied result.
The text was updated successfully, but these errors were encountered:
What is URL filter flash?
If you reload on
/discography?filter=albums
, you will see the result of/discography
and then see the result of/discography?filter=albums
.This behavior is due to the nature of SSG. When the page is being generated, it outputs the result when the URL filter is empty, and this is the response you will get every time you access the route of
/discography
.When you hit the browser reload button, the server serves the empty filter HTML. Then JS kicks in (re-hydrate) and updates the result with the filter-applied result.
The text was updated successfully, but these errors were encountered: