I have a "not found" component:
{
path: '**',
loadComponent: () =>
import('./pages/not-found-page.component').then(
(c) => c.PageNotFoundComponent,
),
}
How can I send the 404 status in the response, so Google doesn't show a soft 404 problem on my app?