- angular-http-cache-interceptor.git
- src
- app
- common
- common.module.ts
This file ( 867B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
import { NgModule } from '@angular/core';
import { CommonModule as AngularCommonModule } from '@angular/common';
import { DefaultComponentComponent } from './default-component/default-component.component';
import {MatSnackBarModule} from "@angular/material/snack-bar";
import {MatButtonModule} from "@angular/material/button";
import {MatDividerModule} from "@angular/material/divider";
import { provideHttpClient, withInterceptorsFromDi } from "@angular/common/http";
import { HighlightService } from "./highlight.service";
@NgModule({ exports: [
DefaultComponentComponent,
], imports: [AngularCommonModule,
MatSnackBarModule,
MatButtonModule,
MatDividerModule,
DefaultComponentComponent], providers: [
HighlightService,
provideHttpClient(withInterceptorsFromDi())
] })
export class CommonModule { }