- angular-http-cache-interceptor.git
- src
- app
- default
- default.module.ts
This file ( 920B ) 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 { BootstrapComponent } from './bootstrap/bootstrap.component';
import {DefaultRoutingModule} from "./default-routing.module";
import {CommonModule} from "../common/common.module";
import {P3XHttpCacheInterceptorModule} from '../../../projects/angular-http-cache-interceptor/src/lib/http-cache-interceptor.module';
//import {CachingHeaders} from "../../../projects/angular-http-cache-interceptor/src/lib/caching-headers.enum";
//import { P3XHttpCacheInterceptorModule } from 'p3x-interceptor'
import { MatDividerModule } from "@angular/material/divider";
@NgModule({
imports: [
P3XHttpCacheInterceptorModule,
AngularCommonModule,
DefaultRoutingModule,
CommonModule,
MatDividerModule,
BootstrapComponent,
],
})
export class DefaultModule { }