lighthouse 11.7.0-dev.20240324 → 11.7.0-dev.20240325
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -634,7 +634,7 @@ class NetworkRequest {
|
|
|
634
634
|
/^content-encoding$/i,
|
|
635
635
|
/^x-content-encoding-over-network$/i,
|
|
636
636
|
];
|
|
637
|
-
const compressionTypes = ['gzip', 'br', 'deflate'];
|
|
637
|
+
const compressionTypes = ['gzip', 'br', 'deflate', 'zstd'];
|
|
638
638
|
return record.responseHeaders.some(header =>
|
|
639
639
|
patterns.some(p => header.name.match(p)) && compressionTypes.includes(header.value)
|
|
640
640
|
);
|
package/package.json
CHANGED