diff --git a/src/app.module.ts b/src/app.module.ts index 538375c..f0bca68 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -6,11 +6,13 @@ import './app.ts'; import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; +import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { UpgradeModule } from '@angular/upgrade/static'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { NgLoggerModule } from '@nsalaun/ng-logger'; import { RestangularModule } from 'ngx-restangular'; +import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; import { AccountModule } from './accounts/account.module'; import { ApiBaseURL, LogLevel } from './app.config'; @@ -18,6 +20,7 @@ import { ApiBaseURL, LogLevel } from './app.config'; @NgModule({ imports: [ BrowserModule, + BrowserAnimationsModule, UpgradeModule, AccountModule, NgLoggerModule.forRoot(LogLevel), @@ -32,7 +35,8 @@ import { ApiBaseURL, LogLevel } from './app.config'; return false; } ); - }) + }), + NgbModule.forRoot() ] })