feat(project-editor): route-driven tabs under /edit/:section
This commit is contained in:
@@ -40,12 +40,22 @@ const coreRoutes: Routes = [
|
||||
loadComponent: () => import('./features/website/catalog/containers/catalog-container.component').then(m => m.CatalogContainerComponent)
|
||||
},
|
||||
{
|
||||
path: 'builder',
|
||||
path: 'edit/:section',
|
||||
loadComponent: () => import('./features/project-editor/pages/project-editor-page.component').then(m => m.ProjectEditorPageComponent)
|
||||
},
|
||||
{
|
||||
path: 'edit',
|
||||
redirectTo: 'edit/general',
|
||||
pathMatch: 'full'
|
||||
},
|
||||
{
|
||||
path: 'builder',
|
||||
redirectTo: 'edit/general',
|
||||
pathMatch: 'full'
|
||||
},
|
||||
{
|
||||
path: 'project-editor',
|
||||
redirectTo: 'builder',
|
||||
redirectTo: 'edit/general',
|
||||
pathMatch: 'full'
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user