2025-11-13 13:30:02 +07:00
|
|
|
export const CACHEABLE_URLS = {
|
|
|
|
|
GET: [
|
|
|
|
|
// Add GET URIs here that you want to cache
|
|
|
|
|
// e.g., '/api/data'
|
|
|
|
|
],
|
|
|
|
|
POST: [
|
2025-11-13 16:25:13 +07:00
|
|
|
'/api/web/accountingSetup',
|
2025-11-13 14:20:15 +07:00
|
|
|
'/api/nigga'
|
2025-11-13 13:30:02 +07:00
|
|
|
// Add POST URIs here that you want to cache
|
|
|
|
|
// e.g., '/api/search'
|
|
|
|
|
]
|
|
|
|
|
};
|