feat(web): route and enable the Inventar nav entry

This commit is contained in:
Bastian Wagner
2026-08-20 17:58:32 +02:00
parent fdd8ae4e41
commit 724443de1e
2 changed files with 12 additions and 2 deletions

View File

@@ -28,6 +28,13 @@ export const routes: Routes = [
(module) => module.CombatPageComponent,
),
},
{
path: 'inventory',
loadComponent: () =>
import('./features/inventory/inventory-page.component').then(
(module) => module.InventoryPageComponent,
),
},
],
},
{ path: '**', redirectTo: 'world' },