[Solved] how deep can a url be in angular? [closed]
You have to repeat the complete path to the route you want to add in each module (meaning from root on). To solve your problem you would have to change your settings.routing.module.ts to import { NgModule } from ‘@angular/core’; import { Routes, RouterModule } from ‘@angular/router’; import { TeamsComponent } from ‘../teams.component’; import { SettingsComponent … Read more