browseranimationsmodule browsermodule has already been loaded

Solutions on MaxInterview for browseranimationsmodule browsermodule has already been loaded by the best coders in the world

showing results for - "browseranimationsmodule browsermodule has already been loaded"
Leon
28 Aug 2019
1// Credit: https://stackoverflow.com/questions/39286667/browsermodule-has-already-been-loaded-error
2
3I think you are using 'NoopAnimationsModule' or 'BrowserAnimationsModule',
4Which already contain 'BrowserModule' and loading your module lazily.
5SO the solution is Replace the BrowserModule with
6'NoopAnimationsModule or 'BrowserAnimationsModule' in your 'app.module.ts'.