我有一个Angular CLI项目,我使用多个组件构建,并通过FileZilla上传到我的学校域。我想要它,以便在加载应用程序时,它重定向到HomeComponent而不是AppComponent。我该怎么做才能做到这一点?
答案 0 :(得分:0)
在路由器中设置到主组件URL的默认路由。
const appRoutes: Routes = [
{ path: '',
redirectTo: '/home',
pathMatch: 'full'
},
{ path: 'home', component: HomeComponent },
];