I\'ve updated my application to RC6 and now i keep getting this error:
zone.js:484 Unhandled Promise rejection: BrowserModule has already been loade
I solved this by using this in my app.component.ts:
app.component.ts
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; imports: [ .., BrowserAnimationsModule, ],
and removed it from anywhere else.