Files
micro-frontend/ng-ttc-frontend/src/app/config/caching.config.ts
x2Skyz 15308ababa
All checks were successful
Build Docker Image / Preparing Dependecies (push) Successful in 4s
-login guard
-caching
-budget
2025-11-19 18:30:35 +07:00

13 lines
275 B
TypeScript

export const CACHEABLE_URLS = {
GET: [
// Add GET URIs here that you want to cache
// e.g., '/api/data'
],
POST: [
'/api/web/accountingSetup'
// '/api/web/accountingSum'
// Add POST URIs here that you want to cache
// e.g., '/api/search'
]
};