All checks were successful
Build Docker Image / Preparing Dependecies (push) Successful in 4s
-caching -budget
13 lines
275 B
TypeScript
13 lines
275 B
TypeScript
export const CACHEABLE_URLS = {
|
|
GET: [
|
|
// Add GET URIs here that you want to cache
|
|
// e.g., '/api/data'
|
|
],
|
|
POST: [
|
|
'/api/web/accountingSetup'
|
|
// '/api/web/accountingSum'
|
|
// Add POST URIs here that you want to cache
|
|
// e.g., '/api/search'
|
|
]
|
|
};
|