I have a PWA app and when user reloads the page, it gets a 404 because of the changes that the router inserts in the browser nav url. For example, my app is loaded from:
http://192.168.1.7:8200
and when the app loads the login page, the browser url changes to:
http://192.168.1.7:8200/login
If user reloads the app in that moment, it gets a 404. How can I prevent the router to make changes on the browser url? The url should stay as http://192.168.1.7:8200
all the time.