mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
BREAKING CHANGE: Angular updated to version 9. Nebular updated to version 5. `@agm/core` replaced with `@angular/google-maps`. `ng2-completer` replaced with `@akveo/ng2-completer`, read details [here](https://github.com/akveo/ng2-smart-table/pull/1140#issue-392285957).
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Akveo. All Rights Reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*/
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
import { NgModule } from '@angular/core';
|
|
import { HttpClientModule } from '@angular/common/http';
|
|
import { CoreModule } from './@core/core.module';
|
|
import { ThemeModule } from './@theme/theme.module';
|
|
import { AppComponent } from './app.component';
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import {
|
|
NbChatModule,
|
|
NbDatepickerModule,
|
|
NbDialogModule,
|
|
NbMenuModule,
|
|
NbSidebarModule,
|
|
NbToastrModule,
|
|
NbWindowModule,
|
|
} from '@nebular/theme';
|
|
|
|
@NgModule({
|
|
declarations: [AppComponent],
|
|
imports: [
|
|
BrowserModule,
|
|
BrowserAnimationsModule,
|
|
HttpClientModule,
|
|
AppRoutingModule,
|
|
NbSidebarModule.forRoot(),
|
|
NbMenuModule.forRoot(),
|
|
NbDatepickerModule.forRoot(),
|
|
NbDialogModule.forRoot(),
|
|
NbWindowModule.forRoot(),
|
|
NbToastrModule.forRoot(),
|
|
NbChatModule.forRoot({
|
|
messageGoogleMapKey: 'AIzaSyA_wNuCzia92MAmdLRzmqitRGvCF7wCZPY',
|
|
}),
|
|
CoreModule.forRoot(),
|
|
ThemeModule.forRoot(),
|
|
],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule {
|
|
}
|