What is Path URL ?
For example this is our domain name
http://localhost:4200
Now I want to redirect it on home url whenever site load.
http://localhost:4200/home
–TS File (app.routing.module.ts)
const appRoutes: Routes = [ { path: '', redirectTo:'/home', pathMatch:'full'}, { path: 'home', component: HomeComponent}, ]