70 lines
2.6 KiB
TypeScript
70 lines
2.6 KiB
TypeScript
import {NgModule} from '@angular/core';
|
|
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
|
|
import {BrowserModule} from '@angular/platform-browser';
|
|
import {NgxGoogleAnalyticsModule} from 'ngx-google-analytics';
|
|
import {environment} from '../environments/environment';
|
|
import {AppRouting} from './app.routing';
|
|
import {BannerComponent} from './components/banner/banner.component';
|
|
import {ContactComponent} from './components/contact/contact.component';
|
|
import {FooterComponent} from './components/footer/footer.component';
|
|
import {LogoComponent} from './components/logo/logo.component';
|
|
import {NavbarComponent} from './components/navbar/navbar.component';
|
|
import {AppComponent} from './containers/app/app.component';
|
|
import {BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
import {MaterialModule} from './material.module';
|
|
import {PrelaodService} from './services/prelaod.service';
|
|
import {FourOFourComponent} from './views/404/404.component';
|
|
import {AboutComponent} from './views/about/about.component';
|
|
import {AestivaComponent} from './views/events/aestiva/aestiva.component';
|
|
import {AgoniumComponent} from './views/events/agonium/agonium.component';
|
|
import {CalendarComponent} from './views/events/calendar/calendar.component';
|
|
import {HibernaComponent} from './views/events/hiberna/hiberna.component';
|
|
import {GalleryComponent} from './views/gallery/gallery.component';
|
|
import {HomeComponent} from './views/home/home.component';
|
|
import {DrillComponent} from './views/reenact/drill/drill.component';
|
|
import {GettingStartedComponent} from './views/reenact/getting-started/getting-started.component';
|
|
import {MaintenanceComponent} from './views/reenact/maintinance/maintenance.component';
|
|
import {RulesComponent} from './views/reenact/rules/rules.component';
|
|
|
|
export const APP_COMPONENTS: any[] = [
|
|
AboutComponent,
|
|
AestivaComponent,
|
|
AgoniumComponent,
|
|
AppComponent,
|
|
BannerComponent,
|
|
CalendarComponent,
|
|
ContactComponent,
|
|
DrillComponent,
|
|
FooterComponent,
|
|
FourOFourComponent,
|
|
GalleryComponent,
|
|
GettingStartedComponent,
|
|
HibernaComponent,
|
|
HomeComponent,
|
|
LogoComponent,
|
|
MaintenanceComponent,
|
|
NavbarComponent,
|
|
RulesComponent
|
|
]
|
|
|
|
export const APP_IMPORTS: any[] = [
|
|
AppRouting,
|
|
BrowserAnimationsModule,
|
|
BrowserModule,
|
|
ReactiveFormsModule,
|
|
MaterialModule
|
|
]
|
|
|
|
if(environment.analytics && (<any>environment.analytics) != '{{ANALYTICS}}')
|
|
APP_IMPORTS.push(NgxGoogleAnalyticsModule.forRoot(<any>environment.analytics));
|
|
|
|
@NgModule({
|
|
declarations: APP_COMPONENTS,
|
|
imports: APP_IMPORTS,
|
|
providers: [],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule {
|
|
constructor(preload: PrelaodService) { }
|
|
}
|