fix(ssr): render storefront routes under tenant prefixes

This commit is contained in:
2026-08-18 17:19:49 -03:00
parent 581696ffab
commit f318f614af
2 changed files with 34 additions and 0 deletions

View File

@@ -14,5 +14,12 @@ export const routes: Routes = [
{
path: '',
loadChildren: () => import('./features/store/store.routes').then((m) => m.routes)
},
{
path: '**',
loadComponent: () =>
import('./shared/pages/route-not-found-page.component').then(
(m) => m.RouteNotFoundPageComponent,
)
}
];