feat: เพิ่มระบบ caching

- เพิ่ม caching interceptor และ service

- เพิ่ม configสำหรับ caching
This commit is contained in:
2025-11-13 13:30:02 +07:00
parent f25488370a
commit 78ce686f97
3 changed files with 104 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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'
]
};