completed ng18 migration

This commit is contained in:
2024-08-25 20:11:31 -04:00
parent de237618f0
commit 8607fdf9f1
5 changed files with 1788 additions and 1398 deletions
+7 -14
View File
@@ -3,20 +3,13 @@ import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { HttpClientModule } from '@angular/common/http';
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
import { GraphQLModule } from './graphql.module';
@NgModule({
declarations: [
AppComponent
],
imports: [
HttpClientModule,
BrowserModule,
AppRoutingModule,
GraphQLModule
],
providers: [],
bootstrap: [AppComponent]
})
@NgModule({ declarations: [
AppComponent
],
bootstrap: [AppComponent], imports: [BrowserModule,
AppRoutingModule,
GraphQLModule], providers: [provideHttpClient(withInterceptorsFromDi())] })
export class AppModule { }