Dear OS Frontend Specialists,
in eo-custom-client-routing.module.ts I have defined the following Route:
const routes: Routes = [
{path: 'inline-editing-table/:objectid', component: InlineEditingTableDialogComponent, canActivate: [AuthGuard]}
];
If I start localhost I can perfectly open the InlineEditingTableDialogComponent
If I deploy the application and try to acess "https://my-server/inline-editing-table/8D0BD314EF8C4C3CA7B8C81F9F756337"
I will get an 404 NOT_FOUND error.
Do I need to edit gateway-prod.yml?
Thank you for your help.