mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-04-11 19:51:47 -04:00
* Updated to Angular 14 * Fixed all new tslint issues * Fixed a routing bug for Angular 14 * Updated ngBootstrap and bootstrap. Fixed side nav item not highlighting on route change * Refactored how default dark styles are done * Migrated everything to a typed form * Bump versions by dotnet-bump-version. * Fixed a regression where click areas need an explicit z-index * Cleanup some css * Bumped docnet back to the alpha which has our downstream fixes * Updated dependencies to later versions. Mainly just NetVips with some archive fixes. * Fixed broken unit tests (due to some fixes in SharpCompress that changed byte arrays, but not visible quality)
47 lines
1.5 KiB
TypeScript
47 lines
1.5 KiB
TypeScript
import { BrowserModule, Title } from '@angular/platform-browser';
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { AppComponent } from './app.component';
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
|
|
import { JwtInterceptor } from './_interceptors/jwt.interceptor';
|
|
import { ToastrModule } from 'ngx-toastr';
|
|
import { ErrorInterceptor } from './_interceptors/error.interceptor';
|
|
|
|
import { SAVER, getSaver } from './shared/_providers/saver.provider';
|
|
import { SidenavModule } from './sidenav/sidenav.module';
|
|
import { NavModule } from './nav/nav.module';
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
],
|
|
imports: [
|
|
HttpClientModule,
|
|
BrowserModule,
|
|
AppRoutingModule,
|
|
BrowserAnimationsModule,
|
|
SidenavModule,
|
|
NavModule,
|
|
ToastrModule.forRoot({
|
|
positionClass: 'toast-bottom-right',
|
|
preventDuplicates: true,
|
|
timeOut: 6000,
|
|
countDuplicates: true,
|
|
autoDismiss: true
|
|
}),
|
|
],
|
|
providers: [
|
|
{ provide: HTTP_INTERCEPTORS, useClass: ErrorInterceptor, multi: true },
|
|
{ provide: HTTP_INTERCEPTORS, useClass: JwtInterceptor, multi: true },
|
|
Title,
|
|
{ provide: SAVER, useFactory: getSaver },
|
|
],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule { }
|