feat static pages system with dynamic footer and safe html rendering
This commit is contained in:
@@ -41,6 +41,14 @@ const coreRoutes: Routes = [
|
||||
{
|
||||
path: 'cart',
|
||||
loadComponent: () => import('./pages/cart/cart.component').then(m => m.CartComponent)
|
||||
},
|
||||
{
|
||||
path: 'page/:key',
|
||||
loadComponent: () => import('./pages/static-page/static-page.component').then(m => m.StaticPageComponent)
|
||||
},
|
||||
{
|
||||
path: ':staticPath',
|
||||
loadComponent: () => import('./pages/static-page/static-page.component').then(m => m.StaticPageComponent)
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user