Files
micro-frontend/ng-ttc-frontend/src/app/config/caching.config.ts

13 lines
261 B
TypeScript
Raw Normal View History

2025-11-17 17:25:51 +07:00
export const CACHEABLE_URLS = {
GET: [
// Add GET URIs here that you want to cache
// e.g., '/api/data'
],
POST: [
'/api/web/accountingSetup',
'/api/nigga'
// Add POST URIs here that you want to cache
// e.g., '/api/search'
]
};