We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cae1ae commit 6984607Copy full SHA for 6984607
packages/docs/content/docs/seo.mdx
@@ -45,3 +45,10 @@ export async function generateMetadata({
45
}
46
47
```
48
+
49
+By default, query strings are sorted by their keys to prevent SEO issues related to variations in query string order.
50
+The following example will serialize the query string as `?apple=foo&banana=foo`:
51
52
+```tsx
53
+ useQueryState({ banana: 'foo', foo: 'foo' })
54
+```
0 commit comments