Running into an issue where if I refresh the page while on an interior route, my app will reload with the interior route loaded in front of the root url in the URL address bar. In other words, if the root route is http://localhost:3000/root, and then I navigate to the "about" component (http://localhost:3000/about) and then refresh the page, I end up with http://localhost:3000/about/root. What do I need to change in my routing to address this?