Rule for choosing between a URL path and search param: Search params are...


Rule for choosing between a URL path and search param: Search params are optional.

So, if it’s required to render the page make it part of the URL's path.

If it’s optional (you can fall back to a default), make it a search param.

View original on X