I have a project made with JHipster generator, Angular 4.3.2 and Spring.
All of this in a Monolithic application
In the development area I'm using node for the routing and nginx for the production area.
This project in the url have a hashtag symbol after the url
I want to navigate in my single page app without that symbol and also refresh the page without getting 404 not found error.
I made the app to work without the symbol replacing all of this
RouterModule.forRoot... {useHash: true}
To this
RouterModule.forRoot... {useHash: false}
How can I make the app refresh to work without getting error 404?