Files
micro-frontend/accounting-ng-nuttakit/src/app/config/caching.config.ts
x2Skyz 78ce686f97 feat: เพิ่มระบบ caching
- เพิ่ม caching interceptor และ service

- เพิ่ม configสำหรับ caching
2025-11-13 13:30:02 +07:00

12 lines
244 B
TypeScript

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