@jaypie/constructs 1.2.30 → 1.2.31

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.
package/dist/esm/index.js CHANGED
@@ -2427,6 +2427,16 @@ class JaypieDistribution extends Construct {
2427
2427
  resolvedResponseHeadersPolicy = new cloudfront.ResponseHeadersPolicy(this, "SecurityHeaders", {
2428
2428
  customHeadersBehavior: {
2429
2429
  customHeaders: [
2430
+ {
2431
+ header: "Cache-Control",
2432
+ override: true,
2433
+ value: "no-store, no-cache, must-revalidate, proxy-revalidate",
2434
+ },
2435
+ {
2436
+ header: "Cross-Origin-Embedder-Policy",
2437
+ override: true,
2438
+ value: "unsafe-none",
2439
+ },
2430
2440
  {
2431
2441
  header: "Cross-Origin-Opener-Policy",
2432
2442
  override: true,