core(uses-long-cache-ttl): ignore `stale-while-revalidate` (#13612)
This commit is contained in:
Родитель
f684e1f2b7
Коммит
23c24df527
|
@ -181,6 +181,7 @@ class CacheHeaders extends Audit {
|
|||
cacheControl['must-revalidate'] ||
|
||||
cacheControl['no-cache'] ||
|
||||
cacheControl['no-store'] ||
|
||||
cacheControl['stale-while-revalidate'] ||
|
||||
cacheControl['private'])) {
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@ declare module 'parse-cache-control' {
|
|||
'no-cache'?: boolean;
|
||||
'no-store'?: boolean;
|
||||
'private'?: boolean;
|
||||
'stale-while-revalidate'?: boolean;
|
||||
}
|
||||
|
||||
function ParseCacheControl(headers?: string): CacheHeaders | null;
|
||||
|
|
Загрузка…
Ссылка в новой задаче