I\'m relatively new to React; apologies if this is a really naive question.
What are the technical advantages to browserHistory
that make it prefer
What are the technical advantages to browserHistory that make it preferable over hashHistory?
It allows you to have a server side fallback which:
This comes at the cost of having to write the server side code to build pages in the same way that the client side code does. Without that, using the history API is objectively worse … but the URLs are, very subjectively, nicer so lots of people do it without the server side half anyway.