Hash based parameter system #1094
Answered
by
franky47
michaelbayday
asked this question in
Ideas
|
We have a use case where it would be really beneficial for us to include all query strings/parameters in the location hash since browser network requests don't include what comes after the hash in the referrer. Would it be possible to support this without too many changes or would it change fundamentally how the library works? |
Answered by
franky47
Aug 25, 2025
Replies: 1 comment
|
It would be possible via a custom adapter, there have been some prior discussions about this with suggestions, check these out: Note that a pre-requisite is that the branches of the React tree that use this feature cannot be server-side rendered (or pre-rendered at build time), as they would cause hydration mismatches. |
0 replies
Answer selected by
franky47
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It would be possible via a custom adapter, there have been some prior discussions about this with suggestions, check these out:
Note that a pre-requisite is that the branches of the React tree that use this feature cannot be server-side rendered (or pre-rendered at build time), as they would cause hydration mismatches.