forked from ttc/micro-frontend
12 lines
244 B
TypeScript
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'
|
|
]
|
|
};
|