This commit is contained in:
Alexis Lahouze 2017-07-20 22:54:57 +02:00
parent 5100d0fd0c
commit 4e9915aab0
1 changed files with 5 additions and 1 deletions

View File

@ -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()
]
})