I have an angular app which is deployed with firebase to production.
The App includes following redirect
const routes: Routes = [
{ path: '', component: HomeComponent },
// some others
{ path: '**', redirectTo: '/' },
];
On local environment this works like required, an undefined path is redirected -> HomeComponent is visible.
On the deployed app, however, the user is redirected to a firebase 404 page
How can I disable the firebase page, so that the user sees the HomeComponent, when he tries to access a not existing page?