Files
certd/packages/ui/certd-server/src/configuration-cache.ts
T

7 lines
201 B
TypeScript
Raw Normal View History

2026-05-15 00:39:35 +08:00
export function shouldSetDefaultNoCache(path: string, cacheControl?: string) {
if (cacheControl) {
return false;
}
return path === '/' || path === '/index.html' || path.startsWith('/api');
}