Skip to content

Commit

Permalink
fix(examples): remove relativeLinkResolution (#2530)
Browse files Browse the repository at this point in the history
Relative routing is not used in the angular_bazel_architect example.
Parameter `relativeLinkResolution` introduced by Angular migration is
not required.
  • Loading branch information
saxicek authored Mar 14, 2021
1 parent 8f440b4 commit 8ef60e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ import {RouterModule, Routes} from '@angular/router';

const routes: Routes = [];

@NgModule({imports: [RouterModule.forRoot(routes, { relativeLinkResolution: 'legacy' })], exports: [RouterModule]})
@NgModule({imports: [RouterModule.forRoot(routes)], exports: [RouterModule]})
export class AppRoutingModule {}

0 comments on commit 8ef60e5

Please sign in to comment.