Append to the code snippet about auth-guard how to import and configure providers of the new AngularFireAuthGuard. Something like
@NgModule({
imports: [
RouterModule.forChild(routes),
AngularFireAuthModule,
],
providers: [
AngularFireAuthGuard
],
exports: [RouterModule]
})
export class MyRoutingModule {}