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: [
|
2025-11-19 18:30:35 +07:00
|
|
|
'/api/web/accountingSetup'
|
|
|
|
|
// '/api/web/accountingSum'
|
2025-11-17 17:25:51 +07:00
|
|
|
// Add POST URIs here that you want to cache
|
|
|
|
|
// e.g., '/api/search'
|
|
|
|
|
]
|
|
|
|
|
};
|