Currently to match: ``` '/retention': { target: targets.menuRetentionRouteTarget, '/*': 'beforeAll', '/': 'index' }, ``` one has to write it as: ``` '/retention': { target: targets.menuRetentionRouteTarget, '/*': 'beforeAll', '/': { target: targets.menuRetentionRouteTarget, '/': 'index' } }, ```