2017-04-11 19:09:02 +03:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright Akveo. All Rights Reserved.
|
|
|
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
|
*/
|
2017-06-22 12:07:42 +03:00
|
|
|
import { APP_BASE_HREF } from '@angular/common';
|
2017-04-11 19:09:02 +03:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
2017-05-11 18:31:55 +03:00
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
2017-04-11 19:09:02 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { HttpModule } from '@angular/http';
|
2017-04-21 17:23:44 +03:00
|
|
|
import { CoreModule } from './@core/core.module';
|
2017-04-11 19:09:02 +03:00
|
|
|
|
|
|
|
|
import { AppComponent } from './app.component';
|
2017-04-13 14:24:23 +03:00
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
2017-07-20 15:14:38 +03:00
|
|
|
import { ThemeModule } from './@theme/theme.module';
|
2017-04-11 19:09:02 +03:00
|
|
|
|
|
|
|
|
@NgModule({
|
2017-04-13 14:24:23 +03:00
|
|
|
declarations: [AppComponent],
|
2017-04-11 19:09:02 +03:00
|
|
|
imports: [
|
|
|
|
|
BrowserModule,
|
2017-05-11 18:31:55 +03:00
|
|
|
BrowserAnimationsModule,
|
2017-04-11 19:09:02 +03:00
|
|
|
HttpModule,
|
2017-04-13 14:24:23 +03:00
|
|
|
AppRoutingModule,
|
|
|
|
|
CoreModule,
|
2017-07-20 15:14:38 +03:00
|
|
|
ThemeModule.forRoot(),
|
|
|
|
|
CoreModule.forRoot(),
|
2017-04-11 19:09:02 +03:00
|
|
|
],
|
|
|
|
|
bootstrap: [AppComponent],
|
2017-06-22 12:07:42 +03:00
|
|
|
providers: [
|
|
|
|
|
{ provide: APP_BASE_HREF, useValue: '/' },
|
|
|
|
|
],
|
2017-04-11 19:09:02 +03:00
|
|
|
})
|
2017-04-13 14:24:23 +03:00
|
|
|
export class AppModule {
|
|
|
|
|
}
|