2019-06-27 06:48:08 +00:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { NgModule } from '@angular/core';
|
2019-07-09 09:22:36 +00:00
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
2019-06-27 06:48:08 +00:00
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
import { HttpClientModule } from '@angular/common/http';
|
|
|
|
|
|
|
|
import { NotFoundComponent } from './view/home/not-found/not-found.component';
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
AppComponent,NotFoundComponent
|
|
|
|
],
|
|
|
|
imports: [
|
|
|
|
BrowserModule.withServerTransition({ appId: 'serverApp' }),
|
|
|
|
HttpClientModule,
|
|
|
|
AppRoutingModule,
|
2019-07-09 09:22:36 +00:00
|
|
|
BrowserAnimationsModule,
|
2019-06-27 06:48:08 +00:00
|
|
|
|
|
|
|
],
|
|
|
|
providers: [],
|
|
|
|
bootstrap: [AppComponent,NotFoundComponent]
|
|
|
|
})
|
|
|
|
export class AppModule { }
|