phase-9: add builder sandbox for in-memory configuration editing

This commit is contained in:
sdarbinyan
2026-07-03 01:40:01 +04:00
parent 69d2f31a9e
commit af743a3c9f
3 changed files with 123 additions and 0 deletions

View File

@@ -31,6 +31,10 @@ const coreRoutes: Routes = [
{
path: 'platform',
loadComponent: () => import('./pages/public/platform-home.component').then(m => m.PlatformHomeComponent)
},
{
path: 'builder-sandbox',
loadComponent: () => import('./pages/builder/builder-sandbox.component').then(m => m.BuilderSandboxComponent)
}
];