- angular-http-cache-interceptor.git
- src
- app
- non-cache
- non-cache.module.ts
This file ( 1kB ) 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 {NonCacheRoutingModule} from "./non-cache-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 {CachingStore} from "../../../projects/angular-http-cache-interceptor/src/lib/caching-store.enum";
import { MatDividerModule } from "@angular/material/divider";
@NgModule({
imports: [
P3XHttpCacheInterceptorModule.forRoot({
behavior: CachingHeaders.NoCache,
store: CachingStore.Global,
}),
NonCacheRoutingModule,
AngularCommonModule,
CommonModule,
MatDividerModule,
BootstrapComponent,
],
})
export class NonCacheModule { }