Now that the routes are defined, we need to let our application know about the routes. To do this, bootstrap the provider we exported in the previous example.
Find your bootstrap configuration (should be in main.ts
, but your mileage may vary).
//main.ts
import {bootstrap} from '@angular/platform-browser-dynamic';
//Import the App component (root component)
import { App } from './app/app';
//Also import the app routes
import { APP_ROUTES_PROVIDER } from './app/app.routes';
bootstrap(App, [
APP_ROUTES_PROVIDER,
])
.catch(err => console.error(err));