をリダイレクト理解しようとすると? 2つのアスタリスクは何に対応していますか?ドキュメント<a href="https://angular.io/guide/router" rel="nofollow noreferrer">https://angular.io/guide/router</a></p> <p>「**」とのルートは何をするん からのルート例
const appRoutes: Routes = [
{ path: 'crisis-center', component: CrisisListComponent },
{ path: 'heroes', component: HeroListComponent },
{ path: '', redirectTo: '/heroes', pathMatch: 'full' },
{ path: '**', component: PageNotFoundComponent }
];