I'm just starting to use react router. Following the tutorial in the docs and building a personal project. I'm running into a problem with what appears to be caching. Docs tutorial: https://reactrouter.com/en/main/start/tutorial#the-contact-route-ui
Once I started using the <Outlet /> component to render child route elements, I noticed that changes I make to the child route components only show up if I shut down the development server, clear my browser cache, and restart to the dev server. This is massively time consuming; surely there is a better work flow?
I am just trying to build a simple app that has a bottom navigation that renders content in the middle of the page based on what nav link is clicked. Github repo here: https://github.com/josephrmartinez/reactionsjournal
With this project I am trying to use vite, react router, and tailwind.
Site here:
https://josephrmartinez.github.io/reactionsjournal/concepts
Is there any way for me to disable this caching behavior during development?